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

Unified Diff: chrome/browser/captive_portal/captive_portal_tab_helper.cc

Issue 242483003: Move CaptivePortalDetector to src/components/captive_portal (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move CaptivePortalDetector to a component 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/captive_portal/captive_portal_tab_helper.cc
diff --git a/chrome/browser/captive_portal/captive_portal_tab_helper.cc b/chrome/browser/captive_portal/captive_portal_tab_helper.cc
index 9b32a0cc8d5c56b8c69551940f371f6073b33df6..ad6dbfdbf9185634908d9f0f260aa1920e4d7157 100644
--- a/chrome/browser/captive_portal/captive_portal_tab_helper.cc
+++ b/chrome/browser/captive_portal/captive_portal_tab_helper.cc
@@ -210,8 +210,9 @@ void CaptivePortalTabHelper::OnRedirect(int child_id,
tab_reloader_->OnRedirect(new_url.SchemeIsSecure());
}
-void CaptivePortalTabHelper::OnCaptivePortalResults(Result previous_result,
- Result result) {
+void CaptivePortalTabHelper::OnCaptivePortalResults(
+ CaptivePortalResult previous_result,
+ CaptivePortalResult result) {
tab_reloader_->OnCaptivePortalResults(previous_result, result);
login_detector_->OnCaptivePortalResults(previous_result, result);
}

Powered by Google App Engine
This is Rietveld 408576698