Chromium Code Reviews| Index: components/user_manager/user_manager_base.h |
| diff --git a/components/user_manager/user_manager_base.h b/components/user_manager/user_manager_base.h |
| index 4faae77f2dfcae083f1bc3493512e7e202ca8de1..272fb3500ab21f92bba1021045d6fce5ba128c43 100644 |
| --- a/components/user_manager/user_manager_base.h |
| +++ b/components/user_manager/user_manager_base.h |
| @@ -105,6 +105,11 @@ class USER_MANAGER_EXPORT UserManagerBase : public UserManager { |
| UserManager::UserSessionStateObserver* obs) override; |
| void NotifyLocalStateChanged() override; |
| void ChangeUserChildStatus(User* user, bool is_child) override; |
| + bool FindKnowUserPrefs(const UserID& user_id, |
|
Nikita (slow)
2015/03/20 18:06:50
nit: FindKnown
Denis Kuznetsov (DE-MUC)
2015/03/20 19:50:30
Done.
|
| + const base::DictionaryValue** out_value) override; |
| + void UpdateKnowUserPrefs(const UserID& user_id, |
|
Nikita (slow)
2015/03/20 18:06:50
nit: UpdateKnown
Denis Kuznetsov (DE-MUC)
2015/03/20 19:50:30
Done.
|
| + const base::DictionaryValue& values, |
| + bool clear) override; |
| virtual void SetIsCurrentUserNew(bool is_new); |
| @@ -202,21 +207,6 @@ class USER_MANAGER_EXPORT UserManagerBase : public UserManager { |
| // avatar, OAuth token status, display name, display email). |
| virtual void RemoveNonCryptohomeData(const std::string& user_id); |
| - // Methods for storage/retrieval of per-user properties in Local State. |
| - |
| - // Performs a lookup of properties associated with |user_id|. If found, |
| - // returns |true| and fills |out_value|. |out_value| can be NULL, if |
| - // only existence check is required. |
| - bool FindKnowUserPrefs(const UserID& user_id, |
| - const base::DictionaryValue** out_value); |
| - |
| - // Updates (or creates) properties associated with |user_id| based |
| - // on |values|. |clear| defines if existing properties are cleared (|true|) |
| - // or if it is just a incremental update (|false|). |
| - void UpdateKnowUserPrefs(const UserID& user_id, |
| - const base::DictionaryValue& values, |
| - bool clear); |
| - |
| // Check for a particular user type. |
| // Returns true if |user_id| represents demo app. |