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); |
}; |