Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(597)

Side by Side Diff: chrome/browser/prefs/pref_value_store.h

Issue 5213002: Fix for Bug 50726 "Save extension list and "winning" prefs from extensions" (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Temporary hack to fix regression in unit tests Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_PREFS_PREF_VALUE_STORE_H_ 5 #ifndef CHROME_BROWSER_PREFS_PREF_VALUE_STORE_H_
6 #define CHROME_BROWSER_PREFS_PREF_VALUE_STORE_H_ 6 #define CHROME_BROWSER_PREFS_PREF_VALUE_STORE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 // |callback|. |callback| is called with the set of preferences changed by the 165 // |callback|. |callback| is called with the set of preferences changed by the
166 // policy refresh. |callback| is called on the caller's thread as a Task 166 // policy refresh. |callback| is called on the caller's thread as a Task
167 // after RefreshPolicyPrefs has returned. 167 // after RefreshPolicyPrefs has returned.
168 void RefreshPolicyPrefs(AfterRefreshCallback* callback); 168 void RefreshPolicyPrefs(AfterRefreshCallback* callback);
169 169
170 // Returns true if there are proxy preferences in user-modifiable 170 // Returns true if there are proxy preferences in user-modifiable
171 // preference stores (e.g. CommandLinePrefStore, ExtensionPrefStore) 171 // preference stores (e.g. CommandLinePrefStore, ExtensionPrefStore)
172 // that conflict with proxy settings specified by proxy policy. 172 // that conflict with proxy settings specified by proxy policy.
173 bool HasPolicyConflictingUserProxySettings(); 173 bool HasPolicyConflictingUserProxySettings();
174 174
175 // Returns a reference to the extension pref store for write access.
176 PrefStore* GetExtensionPrefStore();
177
175 protected: 178 protected:
176 // In decreasing order of precedence: 179 // In decreasing order of precedence:
177 // |managed_platform_prefs| contains all managed platform (non-cloud policy) 180 // |managed_platform_prefs| contains all managed platform (non-cloud policy)
178 // preference values. 181 // preference values.
179 // |device_management_prefs| contains all device management (cloud policy) 182 // |device_management_prefs| contains all device management (cloud policy)
180 // preference values. 183 // preference values.
181 // |extension_prefs| contains preference values set by extensions. 184 // |extension_prefs| contains preference values set by extensions.
182 // |command_line_prefs| contains preference values set by command-line 185 // |command_line_prefs| contains preference values set by command-line
183 // switches. 186 // switches.
184 // |user_prefs| contains all user-set preference values. 187 // |user_prefs| contains all user-set preference values.
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 // A mapping of preference names to their registered types. 250 // A mapping of preference names to their registered types.
248 PrefTypeMap pref_types_; 251 PrefTypeMap pref_types_;
249 252
250 // The associated profile, if applicable. 253 // The associated profile, if applicable.
251 Profile* profile_; 254 Profile* profile_;
252 255
253 DISALLOW_COPY_AND_ASSIGN(PrefValueStore); 256 DISALLOW_COPY_AND_ASSIGN(PrefValueStore);
254 }; 257 };
255 258
256 #endif // CHROME_BROWSER_PREFS_PREF_VALUE_STORE_H_ 259 #endif // CHROME_BROWSER_PREFS_PREF_VALUE_STORE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698