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

Unified Diff: chrome/browser/chromeos/login/session/user_session_manager.h

Issue 971383002: Removing FRE UI for unicorn accounts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Switched to callback from observer. Created 5 years, 9 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/login/session/user_session_manager.h
diff --git a/chrome/browser/chromeos/login/session/user_session_manager.h b/chrome/browser/chromeos/login/session/user_session_manager.h
index 581847f7ba6fc56d5ef97df7f99b62602c975bcd..4ae07938eca8165eed27c7e607d5f98816ecf020 100644
--- a/chrome/browser/chromeos/login/session/user_session_manager.h
+++ b/chrome/browser/chromeos/login/session/user_session_manager.h
@@ -247,6 +247,10 @@ class UserSessionManager
// Used when restoring user sessions after crash.
void OnProfilePrepared(Profile* profile, bool browser_launched) override;
+ void ChildAccountStatusReceivedCallback();
+
+ void StopStatusObserving();
+
void CreateUserSession(const UserContext& user_context,
bool has_auth_cookies);
void PreStartSession();
@@ -412,6 +416,12 @@ class UserSessionManager
// Whether should launch browser, tests may override this value.
bool should_launch_browser_;
+ // Whether we have postponed request for InitializeStartUrls call.
+ bool init_start_urls_was_postponed_;
+ Profile* flag_fetching_profile_;
Marc Treib 2015/03/10 12:01:35 I think this variable isn't needed anymore now :)
merkulova 2015/03/10 13:36:18 Done.
+
+ base::WeakPtrFactory<UserSessionManager> weak_factory_;
+
DISALLOW_COPY_AND_ASSIGN(UserSessionManager);
};

Powered by Google App Engine
This is Rietveld 408576698