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

Unified Diff: chrome/browser/chrome_content_browser_client.cc

Issue 242483003: Move CaptivePortalDetector to src/components/captive_portal (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move CaptivePortalStatus back Created 6 years, 8 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/chrome_content_browser_client.cc
diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
index f99bd3b94ceaf10cff12a3191fcae4e1902ee03a..5cd58a2261039fc2f716ec773c84d6fa93f90500 100644
--- a/chrome/browser/chrome_content_browser_client.cc
+++ b/chrome/browser/chrome_content_browser_client.cc
@@ -1853,8 +1853,8 @@ void ChromeContentBrowserClient::AllowCertificateError(
}
#if defined(ENABLE_CAPTIVE_PORTAL_DETECTION)
- captive_portal::CaptivePortalTabHelper* captive_portal_tab_helper =
- captive_portal::CaptivePortalTabHelper::FromWebContents(tab);
+ CaptivePortalTabHelper* captive_portal_tab_helper =
+ CaptivePortalTabHelper::FromWebContents(tab);
if (captive_portal_tab_helper)
captive_portal_tab_helper->OnSSLCertError(ssl_info);
#endif

Powered by Google App Engine
This is Rietveld 408576698