OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_EXTENSION_PREF_STORE_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_PREF_STORE_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PREF_STORE_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PREF_STORE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <list> | 9 #include <list> |
10 #include <map> | 10 #include <map> |
(...skipping 12 matching lines...) Loading... |
23 class DictionaryValue; | 23 class DictionaryValue; |
24 class Extension; | 24 class Extension; |
25 class PrefService; | 25 class PrefService; |
26 class Profile; | 26 class Profile; |
27 class Value; | 27 class Value; |
28 | 28 |
29 // This PrefStore keeps track of preferences set by extensions: for example, | 29 // This PrefStore keeps track of preferences set by extensions: for example, |
30 // proxy settings. A stack of relevant extensions is stored in order of | 30 // proxy settings. A stack of relevant extensions is stored in order of |
31 // their addition to this PrefStore. For each preference, the last-added | 31 // their addition to this PrefStore. For each preference, the last-added |
32 // enabled extension that tries to set it overrules any others. | 32 // enabled extension that tries to set it overrules any others. |
| 33 // |
| 34 // TODO(battre): The ExtensionPrefStore has an issue if it serves for storing |
| 35 // extension preferences in the local-state (shared among all profiles on a |
| 36 // machine). In this context, there is no meaningful definition of a precedence |
| 37 // order as the same extensions can be installed in different profiles. |
| 38 // One instance would override the preferences of another instance. Also it is |
| 39 // unclear how settings should be removed in this case. For this reason we |
| 40 // (pamg, battre) decided to not support the ExtensionPrefStore for local-state. |
| 41 // This needs to be enforced by the code. |
33 class ExtensionPrefStore : public PrefStore, | 42 class ExtensionPrefStore : public PrefStore, |
34 public NotificationObserver { | 43 public NotificationObserver { |
35 public: | 44 public: |
36 // Maps preference paths to their values. | 45 // Maps preference paths to their values. |
37 typedef std::map<const char*, Value*> PrefValueMap; | 46 typedef std::map<const char*, Value*> PrefValueMap; |
38 | 47 |
39 // The type passed as Details for an EXTENSION_PREF_CHANGED notification. | 48 // The type passed as Details for an EXTENSION_PREF_CHANGED notification. |
40 // The nested pairs are <extension, <pref_path, pref_value> >. This is here, | 49 // The nested pairs are <extension, <pref_path, pref_value> >. This is here, |
41 // rather than in (say) notification_type.h, to keep the dependency on | 50 // rather than in (say) notification_type.h, to keep the dependency on |
42 // std::pair out of the many places that include notification_type.h. | 51 // std::pair out of the many places that include notification_type.h. |
(...skipping 22 matching lines...) Loading... |
65 protected: | 74 protected: |
66 // Returns a vector of the extension IDs in the extension_stack_. | 75 // Returns a vector of the extension IDs in the extension_stack_. |
67 // This should only be accessed by subclasses for unit-testing. | 76 // This should only be accessed by subclasses for unit-testing. |
68 void GetExtensionIDs(std::vector<std::string>* result); | 77 void GetExtensionIDs(std::vector<std::string>* result); |
69 | 78 |
70 // Returns the applicable pref service from the profile (if we have one) or | 79 // Returns the applicable pref service from the profile (if we have one) or |
71 // the browser's local state. This should only be accessed or overridden by | 80 // the browser's local state. This should only be accessed or overridden by |
72 // subclasses for unit-testing. | 81 // subclasses for unit-testing. |
73 virtual PrefService* GetPrefService(); | 82 virtual PrefService* GetPrefService(); |
74 | 83 |
| 84 // The following functions delegate to |
| 85 // profile_->GetExtensionsService()->extension_prefs() |
| 86 // and are defined here only for injection in case of unit tests. |
| 87 virtual void PersistExtensionPrecedences( |
| 88 const std::vector<std::string>& precedence); |
| 89 virtual void GetExtensionPrecedences( |
| 90 std::vector<std::string>* precedence) const; |
| 91 |
75 private: | 92 private: |
76 // Associates an extension with the prefs it sets. Owns the pref values. | 93 // Associates an extension with the prefs it sets. Owns the pref values. |
77 struct ExtensionPrefs { | 94 struct ExtensionPrefs { |
78 ExtensionPrefs(const Extension* extension, PrefValueMap* values); | 95 ExtensionPrefs(const std::string& extension_id, PrefValueMap* values); |
79 ~ExtensionPrefs(); | 96 ~ExtensionPrefs(); |
80 | 97 |
81 const Extension* extension; | 98 std::string extension_id; |
82 PrefValueMap* pref_values; | 99 PrefValueMap* pref_values; |
83 }; | 100 }; |
84 | 101 |
85 // A pseudo-stack of extensions and their preferences. Extensions are always | 102 // A pseudo-stack of extensions and their preferences. Extensions are always |
86 // added to the head, but may be removed from the middle. | 103 // added to the head, but may be removed from the middle. |
87 typedef std::list<ExtensionPrefs*> ExtensionStack; | 104 typedef std::list<ExtensionPrefs*> ExtensionStack; |
88 | 105 |
89 // Applies the highest-priority extension's setting for the given preference | 106 // Applies the highest-priority extension's setting for the given preference |
90 // path to the |prefs_| store, or clears the setting there if no extensions | 107 // path to the |prefs_| store, or clears the setting there if no extensions |
91 // wish to control it. | 108 // wish to control it. |
92 void UpdateOnePref(const char* path); | 109 void UpdateOnePref(const char* path); |
93 | 110 |
94 // Updates each preference in the key set of the |pref_values| map. | 111 // Updates each preference in the key set of the |pref_values| map. |
95 void UpdatePrefs(const PrefValueMap* pref_values); | 112 void UpdatePrefs(const PrefValueMap* pref_values); |
96 | 113 |
97 // Registers this as an observer for relevant notifications. | 114 // Registers this as an observer for relevant notifications. |
98 void RegisterObservers(); | 115 void RegisterObservers(); |
99 | 116 |
100 // Responds to observed notifications. | 117 // Responds to observed notifications. |
101 void Observe(NotificationType type, | 118 void Observe(NotificationType type, |
102 const NotificationSource& source, | 119 const NotificationSource& source, |
103 const NotificationDetails& details); | 120 const NotificationDetails& details); |
104 | 121 |
| 122 // The following functions update the precedence list maintained by |
| 123 // ExtensionPrefs. They are not responsible for updating the |prefs_| cache. |
| 124 // Therefore, they should not be called outside of InstallExtensionPref and |
| 125 // UninstallExtension. |
| 126 |
| 127 // Appends |extension_id| to the end of the precedence list. This makes |
| 128 // |extension_id| the extension that overwrites preferences of all other |
| 129 // extensions. |
| 130 void AddPrecedence(const std::string& extension_id); |
| 131 |
| 132 // Removes |extension_id| from the precedence list. |
| 133 void RemovePrecedence(const std::string& extension_id); |
| 134 |
| 135 // Initializes the extension_stack_ with empty dictionaries for all |
| 136 // extensions registered in the precedence list. |
| 137 void LazyInit(); |
| 138 |
105 // A cache of the highest-priority values for each preference that any | 139 // A cache of the highest-priority values for each preference that any |
106 // extension is controlling, for quick read access. Owns the stored values. | 140 // extension is controlling, for quick read access. Owns the stored values. |
107 scoped_ptr<DictionaryValue> prefs_; | 141 scoped_ptr<DictionaryValue> prefs_; |
108 | 142 |
109 ExtensionStack extension_stack_; | 143 ExtensionStack extension_stack_; |
110 | 144 |
111 NotificationRegistrar notification_registrar_; | 145 NotificationRegistrar notification_registrar_; |
112 | 146 |
113 // Weak reference to the profile whose extensions we're interested in. May be | 147 // Weak reference to the profile whose extensions we're interested in. May be |
114 // NULL (for the local-state preferences), in which case we watch all | 148 // NULL (for the local-state preferences), in which case we watch all |
115 // extensions. | 149 // extensions. |
116 Profile* profile_; | 150 Profile* profile_; |
117 | 151 |
118 // My PrefStore type, assigned by the PrefValueStore. | 152 // My PrefStore type, assigned by the PrefValueStore. |
119 PrefNotifier::PrefStoreType type_; | 153 PrefNotifier::PrefStoreType type_; |
120 | 154 |
121 DISALLOW_COPY_AND_ASSIGN(ExtensionPrefStore); | 155 DISALLOW_COPY_AND_ASSIGN(ExtensionPrefStore); |
122 }; | 156 }; |
123 | 157 |
124 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PREF_STORE_H_ | 158 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PREF_STORE_H_ |
OLD | NEW |