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

Unified Diff: chrome/browser/chromeos/net/network_portal_detector_impl.cc

Issue 399303003: Eliminate use of sim unlock UI notifications (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/net/network_portal_detector_impl.cc
diff --git a/chrome/browser/chromeos/net/network_portal_detector_impl.cc b/chrome/browser/chromeos/net/network_portal_detector_impl.cc
index 79edc42950a4bdc0bef9508c196aedfe28305986..3361f8e6c12b34831361955fdb5348201fe2962a 100644
--- a/chrome/browser/chromeos/net/network_portal_detector_impl.cc
+++ b/chrome/browser/chromeos/net/network_portal_detector_impl.cc
@@ -286,7 +286,7 @@ NetworkPortalDetectorImpl::GetCaptivePortalState(const std::string& guid) {
DCHECK(CalledOnValidThread());
CaptivePortalStateMap::const_iterator it = portal_state_map_.find(guid);
if (it == portal_state_map_.end()) {
- VLOG(1) << "CaptivePortalState not found for: " << guid;
+ VLOG(2) << "CaptivePortalState not found for: " << guid;
stevenjb 2014/07/18 00:29:40 (This was added recently for debugging but turns o
return CaptivePortalState();
}
return it->second;

Powered by Google App Engine
This is Rietveld 408576698