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

Unified Diff: chrome/browser/prefs/pref_value_store.h

Issue 5174006: Move DeviceManagementPolicyProvider into the profile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/prefs/pref_value_store.h
diff --git a/chrome/browser/prefs/pref_value_store.h b/chrome/browser/prefs/pref_value_store.h
index 87ed7b26b635cbfb6517d0b6d316a3d22c395e49..ff36b93c185baec79290353b1b54c6c9a777b580 100644
--- a/chrome/browser/prefs/pref_value_store.h
+++ b/chrome/browser/prefs/pref_value_store.h
@@ -172,7 +172,7 @@ class PrefValueStore : public base::RefCountedThreadSafe<PrefValueStore> {
// that conflict with proxy settings specified by proxy policy.
bool HasPolicyConflictingUserProxySettings();
- protected:
+ protected:
// In decreasing order of precedence:
// |managed_platform_prefs| contains all managed platform (non-cloud policy)
// preference values.
@@ -195,19 +195,16 @@ class PrefValueStore : public base::RefCountedThreadSafe<PrefValueStore> {
PrefStore* command_line_prefs,
PrefStore* user_prefs,
PrefStore* recommended_prefs,
- PrefStore* default_prefs);
+ PrefStore* default_prefs,
+ Profile* profile);
private:
+ typedef std::map<std::string, Value::ValueType> PrefTypeMap;
+
friend class PrefValueStoreTest;
FRIEND_TEST_ALL_PREFIXES(PrefValueStoreTest,
TestRefreshPolicyPrefsCompletion);
- scoped_ptr<PrefStore> pref_stores_[PrefNotifier::PREF_STORE_TYPE_MAX + 1];
-
- // A mapping of preference names to their registered types.
- typedef std::map<std::string, Value::ValueType> PrefTypeMap;
- PrefTypeMap pref_types_;
-
// Returns true if the preference with the given name has a value in the
// given PrefStoreType, of the same value type as the preference was
// registered with.
@@ -237,6 +234,14 @@ class PrefValueStore : public base::RefCountedThreadSafe<PrefValueStore> {
PrefStore* new_recommended_pref_store,
AfterRefreshCallback* callback);
+ scoped_ptr<PrefStore> pref_stores_[PrefNotifier::PREF_STORE_TYPE_MAX + 1];
+
+ // A mapping of preference names to their registered types.
+ PrefTypeMap pref_types_;
+
+ // The associated profile, if applicable.
+ Profile* profile_;
+
DISALLOW_COPY_AND_ASSIGN(PrefValueStore);
};

Powered by Google App Engine
This is Rietveld 408576698