Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(353)

Side by Side Diff: chrome/browser/captive_portal/captive_portal_service.cc

Issue 10836203: Revert 150875 - Disable captive portal detection prior to merging to M22. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/captive_portal/captive_portal_service.h" 5 #include "chrome/browser/captive_portal/captive_portal_service.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/message_loop.h" 10 #include "base/message_loop.h"
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 CaptivePortalResultToString(result), 87 CaptivePortalResultToString(result),
88 base::TimeDelta::FromSeconds(1), // min 88 base::TimeDelta::FromSeconds(1), // min
89 base::TimeDelta::FromHours(1), // max 89 base::TimeDelta::FromHours(1), // max
90 50, // bucket_count 90 50, // bucket_count
91 base::Histogram::kUmaTargetedHistogramFlag); 91 base::Histogram::kUmaTargetedHistogramFlag);
92 result_duration_histogram->AddTime(result_duration); 92 result_duration_histogram->AddTime(result_duration);
93 } 93 }
94 94
95 } // namespace 95 } // namespace
96 96
97 // Disabled for M22. 97 bool CaptivePortalService::is_disabled_for_testing_ = false;
98 bool CaptivePortalService::is_disabled_for_testing_ = true;
99 98
100 class CaptivePortalService::RecheckBackoffEntry : public net::BackoffEntry { 99 class CaptivePortalService::RecheckBackoffEntry : public net::BackoffEntry {
101 public: 100 public:
102 explicit RecheckBackoffEntry(CaptivePortalService* captive_portal_service) 101 explicit RecheckBackoffEntry(CaptivePortalService* captive_portal_service)
103 : net::BackoffEntry( 102 : net::BackoffEntry(
104 &captive_portal_service->recheck_policy().backoff_policy), 103 &captive_portal_service->recheck_policy().backoff_policy),
105 captive_portal_service_(captive_portal_service) { 104 captive_portal_service_(captive_portal_service) {
106 } 105 }
107 106
108 private: 107 private:
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 414
416 bool CaptivePortalService::FetchingURL() const { 415 bool CaptivePortalService::FetchingURL() const {
417 return url_fetcher_.get() != NULL; 416 return url_fetcher_.get() != NULL;
418 } 417 }
419 418
420 bool CaptivePortalService::TimerRunning() const { 419 bool CaptivePortalService::TimerRunning() const {
421 return check_captive_portal_timer_.IsRunning(); 420 return check_captive_portal_timer_.IsRunning();
422 } 421 }
423 422
424 } // namespace captive_portal 423 } // namespace captive_portal
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698