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); |
}; |