X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fchrome%2Fbrowser%2Fcaptive_portal%2Fcaptive_portal_login_detector.h;h=1324e3eb492f7de97848114e7ee644bb8755213b;hb=004985e17e624662a4c85c76a7654039dc83f028;hp=17266e750e93e3f9e326b55f5d5e879bc93064a0;hpb=2f108dbacb161091e42a3479f4e171339b7e7623;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/chrome/browser/captive_portal/captive_portal_login_detector.h b/src/chrome/browser/captive_portal/captive_portal_login_detector.h index 17266e7..1324e3e 100644 --- a/src/chrome/browser/captive_portal/captive_portal_login_detector.h +++ b/src/chrome/browser/captive_portal/captive_portal_login_detector.h @@ -10,8 +10,6 @@ class Profile; -namespace captive_portal { - // Triggers a captive portal test on navigations that may indicate a captive // portal has been logged into. Currently only tracks if a page was opened // at a captive portal tab's login page, and triggers checks every navigation @@ -27,7 +25,9 @@ class CaptivePortalLoginDetector { ~CaptivePortalLoginDetector(); void OnStoppedLoading(); - void OnCaptivePortalResults(Result previous_result, Result result); + void OnCaptivePortalResults( + captive_portal::CaptivePortalResult previous_result, + captive_portal::CaptivePortalResult result); bool is_login_tab() const { return is_login_tab_; } void SetIsLoginTab(); @@ -46,6 +46,4 @@ class CaptivePortalLoginDetector { DISALLOW_COPY_AND_ASSIGN(CaptivePortalLoginDetector); }; -} // namespace captive_portal - #endif // CHROME_BROWSER_CAPTIVE_PORTAL_CAPTIVE_PORTAL_LOGIN_DETECTOR_H_