| Index: chrome/browser/chromeos/login/user_manager_impl.h
|
| diff --git a/chrome/browser/chromeos/login/user_manager_impl.h b/chrome/browser/chromeos/login/user_manager_impl.h
|
| index 1ec2c2e272ac9348f2e0ecd99127befb826de863..e2cb8889745d4bdad093e1cf67a866c1e810af5a 100644
|
| --- a/chrome/browser/chromeos/login/user_manager_impl.h
|
| +++ b/chrome/browser/chromeos/login/user_manager_impl.h
|
| @@ -164,6 +164,10 @@ class UserManagerImpl
|
| const User* user,
|
| scoped_ptr<locale_util::SwitchLanguageCallback> callback) const OVERRIDE;
|
|
|
| + // Adds |user| to users list, and adds it to front of LRU list. It is assumed
|
| + // that there is no user with same id.
|
| + void AddUserRecord(User* user);
|
| +
|
| void StopPolicyObserverForTesting();
|
|
|
| private:
|
| @@ -317,10 +321,6 @@ class UserManagerImpl
|
| // Insert |user| at the front of the LRU user list.
|
| void SetLRUUser(User* user);
|
|
|
| - // Adds |user| to users list, and adds it to front of LRU list. It is assumed
|
| - // that there is no user with same id.
|
| - void AddUserRecord(User* user);
|
| -
|
| // Callback to process RetrieveActiveSessions() request results.
|
| void OnRestoreActiveSessions(
|
| const SessionManagerClient::ActiveSessionsMap& sessions,
|
|
|