Index: base/prefs/pref_service.h |
diff --git a/base/prefs/pref_service.h b/base/prefs/pref_service.h |
index 186433c1b62907c16eb3360ca8d567ca2b1a07a6..f5a727a167a5f91bdefa9e2fcaf079bec5d9f2a7 100644 |
--- a/base/prefs/pref_service.h |
+++ b/base/prefs/pref_service.h |
@@ -270,6 +270,11 @@ class BASE_PREFS_EXPORT PrefService : public base::NonThreadSafe { |
// implemented in chrome/browser/prefs/browser_prefs.cc. |
PrefRegistry* DeprecatedGetPrefRegistry(); |
+ // This is only to be used to migrate unregistered prefs to become registered. |
Bernhard Bauer
2014/09/04 11:06:02
One thing we could do to ensure no one else uses t
dgrogan
2014/09/04 20:26:33
Changed (for this patchset, at least). I don't lik
|
+ // TODO(dgrogan): Remove after a suitable migration period. See |
Bernhard Bauer
2014/09/04 11:06:02
Can you add what a suitable migration period is? (
dgrogan
2014/09/04 20:26:32
Done.
|
+ // http://crbug.com/167256. |
+ scoped_ptr<base::DictionaryValue> GetBrowserDictionary() const; |
dgrogan
2014/09/04 00:50:51
This is the ugliest. See browser_ui_prefs.cc for i
|
+ |
protected: |
// The PrefNotifier handles registering and notifying preference observers. |
// It is created and owned by this PrefService. Subclasses may access it for |