HomeSort by relevance Sort by last modified time
    Searched refs:CaptivePortalService (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/chrome/browser/captive_portal/
captive_portal_service_factory.cc 13 CaptivePortalService* CaptivePortalServiceFactory::GetForProfile(
15 return static_cast<CaptivePortalService*>(
26 "CaptivePortalService",
35 return new CaptivePortalService(static_cast<Profile*>(profile));
captive_portal_service_factory.h 15 class CaptivePortalService;
19 // the associated CaptivePortalService. Incognito profiles have their own
20 // CaptivePortalService.
23 // Returns the CaptivePortalService for |profile|.
24 static CaptivePortalService* GetForProfile(Profile* profile);
captive_portal_service.cc 64 // CaptivePortalService was shut down.
142 CaptivePortalService::TestingState CaptivePortalService::testing_state_ =
145 class CaptivePortalService::RecheckBackoffEntry : public net::BackoffEntry {
147 explicit RecheckBackoffEntry(CaptivePortalService* captive_portal_service)
158 CaptivePortalService* captive_portal_service_;
163 CaptivePortalService::RecheckPolicy::RecheckPolicy()
190 CaptivePortalService::CaptivePortalService(Profile* profile)
204 base::Bind(&CaptivePortalService::UpdateEnabledState
    [all...]
captive_portal_service_unittest.cc 37 CaptivePortalService* captive_portal_service)
61 CaptivePortalService::Results *results =
62 content::Details<CaptivePortalService::Results>(details).ptr();
76 CaptivePortalService* captive_portal_service_;
90 CaptivePortalService::get_state_for_testing()) {
94 CaptivePortalService::set_state_for_testing(
101 void Initialize(CaptivePortalService::TestingState testing_state) {
102 CaptivePortalService::set_state_for_testing(testing_state);
105 service_.reset(new CaptivePortalService(profile_.get()));
141 // is not OK, |status_code| is ignored. Expects the CaptivePortalService t
    [all...]
captive_portal_service.h 23 // a CaptivePortalService::Results as the details.
25 // Captive portal checks are rate-limited. The CaptivePortalService may only
28 class CaptivePortalService : public KeyedService, public base::NonThreadSafe {
45 explicit CaptivePortalService(Profile* profile);
46 virtual ~CaptivePortalService();
62 // Whether or not the CaptivePortalService is enabled. When disabled, all
77 // Subclass of BackoffEntry that uses the CaptivePortalService's
159 // The profile that owns this CaptivePortalService.
200 base::OneShotTimer<CaptivePortalService> check_captive_portal_timer_;
207 DISALLOW_COPY_AND_ASSIGN(CaptivePortalService);
    [all...]
captive_portal_tab_helper.cc 177 const CaptivePortalService::Results* results =
178 content::Details<CaptivePortalService::Results>(details).ptr();
259 // was received, so it's safe to assume |profile_| has a CaptivePortalService.
captive_portal_tab_reloader.cc 277 CaptivePortalService* service =
captive_portal_browsertest.cc 77 // A mock URL for the CaptivePortalService's |test_url|. When behind a captive
84 // Another mock URL for the CaptivePortalService's |test_url|. When behind a
684 // An observer for watching the CaptivePortalService. It tracks the last
718 CaptivePortalService* captive_portal_service_;
761 CaptivePortalService::Results* results =
762 content::Details<CaptivePortalService::Results>(details).ptr();
    [all...]
captive_portal_tab_helper_unittest.cc 194 CaptivePortalService::Results results;
197 content::Details<CaptivePortalService::Results> details_results(&results);
  /external/chromium_org/chrome/test/base/
in_process_browser_test.cc 195 CaptivePortalService::set_state_for_testing(
196 CaptivePortalService::DISABLED_FOR_TESTING);