| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_USERS_PRIVATE_USERS_PRIVATE_DELEGATE_
H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_USERS_PRIVATE_USERS_PRIVATE_DELEGATE_
H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_USERS_PRIVATE_USERS_PRIVATE_DELEGATE_
H_ | 6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_USERS_PRIVATE_USERS_PRIVATE_DELEGATE_
H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "chrome/browser/extensions/api/settings_private/prefs_util.h" | 13 #include "chrome/browser/extensions/api/settings_private/prefs_util.h" |
| 14 #include "chrome/common/extensions/api/users_private.h" | 14 #include "chrome/common/extensions/api/users_private.h" |
| 15 #include "components/keyed_service/core/keyed_service.h" | 15 #include "components/keyed_service/core/keyed_service.h" |
| 16 #include "extensions/browser/extension_function.h" | 16 #include "extensions/browser/extension_function.h" |
| 17 | 17 |
| 18 class Profile; | 18 class Profile; |
| 19 | 19 |
| 20 namespace base { | |
| 21 class Value; | |
| 22 } | |
| 23 | |
| 24 namespace extensions { | 20 namespace extensions { |
| 25 | 21 |
| 26 // Provides prefs access for managing users. | 22 // Provides prefs access for managing users. |
| 27 // Use UsersPrivateDelegateFactory to create a UsersPrivateDelegate object. | 23 // Use UsersPrivateDelegateFactory to create a UsersPrivateDelegate object. |
| 28 class UsersPrivateDelegate : public KeyedService { | 24 class UsersPrivateDelegate : public KeyedService { |
| 29 public: | 25 public: |
| 30 explicit UsersPrivateDelegate(Profile* profile); | 26 explicit UsersPrivateDelegate(Profile* profile); |
| 31 ~UsersPrivateDelegate() override; | 27 ~UsersPrivateDelegate() override; |
| 32 | 28 |
| 33 // Gets a PrefsUtil object used for persisting settings. | 29 // Gets a PrefsUtil object used for persisting settings. |
| 34 // The caller does not own the returned object. | 30 // The caller does not own the returned object. |
| 35 virtual PrefsUtil* GetPrefsUtil(); | 31 virtual PrefsUtil* GetPrefsUtil(); |
| 36 | 32 |
| 37 protected: | 33 protected: |
| 38 Profile* profile_; // weak; not owned by us | 34 Profile* profile_; // weak; not owned by us |
| 39 std::unique_ptr<PrefsUtil> prefs_util_; | 35 std::unique_ptr<PrefsUtil> prefs_util_; |
| 40 | 36 |
| 41 private: | 37 private: |
| 42 DISALLOW_COPY_AND_ASSIGN(UsersPrivateDelegate); | 38 DISALLOW_COPY_AND_ASSIGN(UsersPrivateDelegate); |
| 43 }; | 39 }; |
| 44 | 40 |
| 45 } // namespace extensions | 41 } // namespace extensions |
| 46 | 42 |
| 47 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_USERS_PRIVATE_USERS_PRIVATE_DELEGA
TE_H_ | 43 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_USERS_PRIVATE_USERS_PRIVATE_DELEGA
TE_H_ |
| OLD | NEW |