| Index: base/prefs/json_pref_store.h
|
| diff --git a/base/prefs/json_pref_store.h b/base/prefs/json_pref_store.h
|
| index 5ae1ca05e336adb0a5de2e29bbd8fae06db108a0..a7151d5b0252b09952d7065fad2a1eb342d207f0 100644
|
| --- a/base/prefs/json_pref_store.h
|
| +++ b/base/prefs/json_pref_store.h
|
| @@ -37,16 +37,16 @@ class BASE_PREFS_EXPORT JsonPrefStore
|
| base::MessageLoopProxy* file_message_loop_proxy);
|
|
|
| // PrefStore overrides:
|
| - virtual ReadResult GetValue(const std::string& key,
|
| - const base::Value** result) const OVERRIDE;
|
| + virtual bool GetValue(const std::string& key,
|
| + const base::Value** result) const OVERRIDE;
|
| virtual void AddObserver(PrefStore::Observer* observer) OVERRIDE;
|
| virtual void RemoveObserver(PrefStore::Observer* observer) OVERRIDE;
|
| virtual size_t NumberOfObservers() const OVERRIDE;
|
| virtual bool IsInitializationComplete() const OVERRIDE;
|
|
|
| // PersistentPrefStore overrides:
|
| - virtual ReadResult GetMutableValue(const std::string& key,
|
| - base::Value** result) OVERRIDE;
|
| + virtual bool GetMutableValue(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;
|
|
|