| Index: chrome/browser/prefs/overlay_persistent_pref_store.h
|
| diff --git a/chrome/browser/prefs/overlay_persistent_pref_store.h b/chrome/browser/prefs/overlay_persistent_pref_store.h
|
| index bbb85c3059862d67605f7e5e3b16b04a5eb673b7..57ffe8d7e1cd048a94c76a2e3ffba7e4c6a3d6b6 100644
|
| --- a/chrome/browser/prefs/overlay_persistent_pref_store.h
|
| +++ b/chrome/browser/prefs/overlay_persistent_pref_store.h
|
| @@ -43,6 +43,7 @@ class OverlayPersistentPrefStore : public PersistentPrefStore,
|
| virtual void RemoveValue(const std::string& key);
|
| virtual bool ReadOnly() const;
|
| virtual PrefReadError ReadPrefs();
|
| + virtual void ReadPrefsAsync(ReadErrorDelegate* delegate);
|
| virtual bool WritePrefs();
|
| virtual void ScheduleWritePrefs();
|
| virtual void CommitPendingWrite();
|
| @@ -51,7 +52,7 @@ class OverlayPersistentPrefStore : public PersistentPrefStore,
|
| private:
|
| // Methods of PrefStore::Observer.
|
| virtual void OnPrefValueChanged(const std::string& key);
|
| - virtual void OnInitializationCompleted();
|
| + virtual void OnInitializationCompleted(bool succeeded);
|
|
|
| ObserverList<PrefStore::Observer, true> observers_;
|
| PrefValueMap overlay_;
|
|
|