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

Unified Diff: chrome/browser/signin/signin_tracker.h

Issue 110373007: Delay loading the NTP after sign in until MergeSession has been performed in (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 7 years 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/signin/signin_tracker.h
diff --git a/chrome/browser/signin/signin_tracker.h b/chrome/browser/signin/signin_tracker.h
index 390a945f3a79ecaaee8ec3f3ac482da2c2f01692..0a6f1ba6e4f547994633c34ccf31f38af48f18a2 100644
--- a/chrome/browser/signin/signin_tracker.h
+++ b/chrome/browser/signin/signin_tracker.h
@@ -56,6 +56,10 @@ class SigninTracker : public content::NotificationObserver,
// The signin attempt succeeded.
virtual void SigninSuccess() = 0;
+
+ // The signed in account has been merged into the content area cookie jar.
+ // This will be called only after a call to SigninSuccess().
+ virtual void MergeSessionComplete(const GoogleServiceAuthError& error) = 0;
};
// Creates a SigninTracker that tracks the signin status on the passed

Powered by Google App Engine
This is Rietveld 408576698