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_EXTENSIONS_API_SETTINGS_PRIVATE_PREFS_UTIL_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_SETTINGS_PRIVATE_PREFS_UTIL_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_API_SETTINGS_PRIVATE_PREFS_UTIL_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_SETTINGS_PRIVATE_PREFS_UTIL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "chrome/common/extensions/api/settings_private.h" | 13 #include "chrome/common/extensions/api/settings_private.h" |
14 | 14 |
15 class PrefService; | 15 class PrefService; |
16 class Profile; | 16 class Profile; |
17 | 17 |
18 namespace extensions { | 18 namespace extensions { |
19 | 19 |
20 namespace prefs_util { | 20 class PrefsUtil { |
21 | 21 |
22 using TypedPrefMap = std::map<std::string, api::settings_private::PrefType>; | 22 public: |
| 23 using TypedPrefMap = std::map<std::string, api::settings_private::PrefType>; |
23 | 24 |
24 // Gets the list of whitelisted pref keys -- that is, those which correspond to | 25 explicit PrefsUtil(Profile* profile); |
25 // prefs that clients of the settingsPrivate API may retrieve and manipulate. | 26 virtual ~PrefsUtil(); |
26 const TypedPrefMap& GetWhitelistedKeys(); | |
27 | 27 |
28 // Gets the value of the pref with the given |name|. Returns a pointer to an | 28 // Gets the list of whitelisted pref keys -- that is, those which correspond |
29 // empty PrefObject if no pref is found for |name|. | 29 // to prefs that clients of the settingsPrivate API may retrieve and |
30 scoped_ptr<api::settings_private::PrefObject> GetPref(Profile* profile, | 30 // manipulate. |
31 const std::string& name); | 31 const TypedPrefMap& GetWhitelistedKeys(); |
32 | 32 |
33 // Returns whether |pref_name| corresponds to a pref whose type is URL. | 33 // Gets the value of the pref with the given |name|. Returns a pointer to an |
34 bool IsPrefTypeURL(const std::string& pref_name); | 34 // empty PrefObject if no pref is found for |name|. |
| 35 virtual scoped_ptr<api::settings_private::PrefObject> GetPref( |
| 36 const std::string& name); |
35 | 37 |
36 // Returns whether |pref_name| corresponds to a pref that is user modifiable | 38 // Sets the pref with the given name and value in the proper PrefService. |
37 // (i.e., not made restricted by a user or device policy). | 39 virtual bool SetPref(const std::string& name, const base::Value* value); |
38 bool IsPrefUserModifiable(Profile* profile, const std::string& pref_name); | |
39 | 40 |
40 // Returns a pointer to the appropriate PrefService instance for the given | 41 // Appends the given |value| to the list setting specified by the path in |
41 // |pref_name|. | 42 // |setting|. |
42 PrefService* FindServiceForPref(Profile* profile, const std::string& pref_name); | 43 virtual bool AppendToListCrosSetting(const std::string& setting, |
| 44 const base::Value& value); |
43 | 45 |
44 } // namespace prefs_util | 46 // Removes the given |value| from the list setting specified by the path in |
| 47 // |setting|. |
| 48 virtual bool RemoveFromListCrosSetting(const std::string& setting, |
| 49 const base::Value& value); |
| 50 |
| 51 // Returns a pointer to the appropriate PrefService instance for the given |
| 52 // |pref_name|. |
| 53 virtual PrefService* FindServiceForPref(const std::string& pref_name); |
| 54 |
| 55 // Returns whether or not the given pref is a CrOS-specific setting. |
| 56 virtual bool IsCrosSetting(const std::string& pref_name); |
| 57 |
| 58 protected: |
| 59 // Returns whether |pref_name| corresponds to a pref whose type is URL. |
| 60 bool IsPrefTypeURL(const std::string& pref_name); |
| 61 |
| 62 // Returns whether |pref_name| corresponds to a pref that is user modifiable |
| 63 // (i.e., not made restricted by a user or device policy). |
| 64 bool IsPrefUserModifiable(const std::string& pref_name); |
| 65 |
| 66 api::settings_private::PrefType GetType(const std::string& name, |
| 67 base::Value::Type type); |
| 68 |
| 69 scoped_ptr<api::settings_private::PrefObject> GetCrosSettingsPref( |
| 70 const std::string& name); |
| 71 |
| 72 bool SetCrosSettingsPref(const std::string& name, const base::Value* value); |
| 73 |
| 74 Profile* profile_; // weak |
| 75 }; |
45 | 76 |
46 } // namespace extensions | 77 } // namespace extensions |
47 | 78 |
48 #endif // CHROME_BROWSER_EXTENSIONS_API_SETTINGS_PRIVATE_PREFS_UTIL_H_ | 79 #endif // CHROME_BROWSER_EXTENSIONS_API_SETTINGS_PRIVATE_PREFS_UTIL_H_ |
OLD | NEW |