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

Unified Diff: chrome/browser/ui/sync/one_click_signin_helper.cc

Issue 580133002: Update entry page type to include error pages when appropriate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile fix for unit_tests Created 6 years, 3 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/ui/sync/one_click_signin_helper.cc
diff --git a/chrome/browser/ui/sync/one_click_signin_helper.cc b/chrome/browser/ui/sync/one_click_signin_helper.cc
index afbefba54f8a18613492325c2dff0132465ae4db..26065d19d790987e4cb34a53e475e1c0e6635850 100644
--- a/chrome/browser/ui/sync/one_click_signin_helper.cc
+++ b/chrome/browser/ui/sync/one_click_signin_helper.cc
@@ -443,6 +443,7 @@ class CurrentHistoryCleaner : public content::WebContentsObserver {
virtual void DidCommitProvisionalLoadForFrame(
content::RenderFrameHost* render_frame_host,
const GURL& url,
+ bool url_is_unreachable,
ui::PageTransition transition_type) OVERRIDE;
private:
@@ -464,6 +465,7 @@ CurrentHistoryCleaner::~CurrentHistoryCleaner() {
void CurrentHistoryCleaner::DidCommitProvisionalLoadForFrame(
content::RenderFrameHost* render_frame_host,
const GURL& url,
+ bool url_is_unreachable,
ui::PageTransition transition_type) {
// Return early if this is not top-level navigation.
if (render_frame_host->GetParent())

Powered by Google App Engine
This is Rietveld 408576698