| Index: chrome/common/json_pref_store.h
|
| diff --git a/chrome/common/json_pref_store.h b/chrome/common/json_pref_store.h
|
| index b94030d806878bfedf8fa600ade4dae4f4175d28..ce2b91f909c0f264e8035595f29729fd303da82c 100644
|
| --- a/chrome/common/json_pref_store.h
|
| +++ b/chrome/common/json_pref_store.h
|
| @@ -35,24 +35,23 @@ class JsonPrefStore : public PersistentPrefStore,
|
|
|
| // PrefStore overrides:
|
| virtual ReadResult GetValue(const std::string& key,
|
| - const base::Value** result) const;
|
| - virtual void AddObserver(PrefStore::Observer* observer);
|
| - virtual void RemoveObserver(PrefStore::Observer* observer);
|
| - virtual bool IsInitializationComplete() const;
|
| + const base::Value** result) const OVERRIDE;
|
| + virtual void AddObserver(PrefStore::Observer* observer) OVERRIDE;
|
| + virtual void RemoveObserver(PrefStore::Observer* observer) OVERRIDE;
|
| + virtual bool IsInitializationComplete() const OVERRIDE;
|
|
|
| // PersistentPrefStore overrides:
|
| virtual ReadResult GetMutableValue(const std::string& key,
|
| - base::Value** result);
|
| - virtual void SetValue(const std::string& key, base::Value* value);
|
| - virtual void SetValueSilently(const std::string& key, base::Value* value);
|
| - virtual void RemoveValue(const std::string& key);
|
| - virtual bool ReadOnly() const;
|
| - virtual PrefReadError ReadPrefs();
|
| - virtual void ReadPrefsAsync(ReadErrorDelegate* error_delegate);
|
| - virtual bool WritePrefs();
|
| - virtual void ScheduleWritePrefs();
|
| - virtual void CommitPendingWrite();
|
| - virtual void ReportValueChanged(const std::string& key);
|
| + base::Value** result) OVERRIDE;
|
| + virtual void SetValue(const std::string& key, base::Value* value) OVERRIDE;
|
| + virtual void SetValueSilently(const std::string& key,
|
| + base::Value* value) OVERRIDE;
|
| + virtual void RemoveValue(const std::string& key) OVERRIDE;
|
| + virtual bool ReadOnly() const OVERRIDE;
|
| + virtual PrefReadError ReadPrefs() OVERRIDE;
|
| + virtual void ReadPrefsAsync(ReadErrorDelegate* error_delegate) OVERRIDE;
|
| + virtual void CommitPendingWrite() OVERRIDE;
|
| + virtual void ReportValueChanged(const std::string& key) OVERRIDE;
|
|
|
| // This method is called after JSON file has been read. Method takes
|
| // ownership of the |value| pointer. Note, this method is used with
|
|
|