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

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

Issue 417623002: user_manager component: Add UserManagerBase class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: check for LocalState, update test - make sure that policies are initialized on UserManager creation Created 6 years, 5 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 0e57bf0ade77f055c1b2590527d6de2dbedc3561..7a5448b8a9b1d34c1be75ca39fefb18e6a20f9e0 100644
--- a/chrome/browser/chromeos/login/session/user_session_manager.h
+++ b/chrome/browser/chromeos/login/session/user_session_manager.h
@@ -98,10 +98,6 @@ class UserSessionManager
// Initialize RLZ.
void InitRlz(Profile* profile);
- // Returns true when the browser has crashed and restarted during the current
- // user's session.
- bool HasBrowserRestarted() const;
-
// TODO(nkostylev): Drop these methods once LoginUtilsImpl::AttemptRestart()
// is migrated.
OAuth2LoginManager::SessionRestoreStrategy GetSigninSessionRestoreStrategy();
@@ -203,9 +199,12 @@ class UserSessionManager
// Initializes RLZ. If |disabled| is true, RLZ pings are disabled.
void InitRlzImpl(Profile* profile, bool disabled);
- // Get the NSS cert database for the primary user and start certificate
- // loader with it.
- void InitializeCertsForPrimaryUser(Profile* profile);
+ // Get the NSS cert database for the user represented with |profile|
+ // and start certificate loader with it.
+ void InitializeCerts(Profile* profile);
+
+ // Starts loading CRL set.
+ void InitializeCRLSetFetcher(const user_manager::User* user);
// Callback to process RetrieveActiveSessions() request results.
void OnRestoreActiveSessions(

Powered by Google App Engine
This is Rietveld 408576698