| Index: base/prefs/value_map_pref_store.h
|
| diff --git a/base/prefs/value_map_pref_store.h b/base/prefs/value_map_pref_store.h
|
| index d4e41f452f79514546da7441d6219f1ae8f320fb..4c151211a906495c3ae33c08213cabad878ec742 100644
|
| --- a/base/prefs/value_map_pref_store.h
|
| +++ b/base/prefs/value_map_pref_store.h
|
| @@ -21,20 +21,18 @@ class BASE_PREFS_EXPORT ValueMapPrefStore : public WriteablePrefStore {
|
| ValueMapPrefStore();
|
|
|
| // PrefStore overrides:
|
| - virtual bool GetValue(const std::string& key,
|
| - const base::Value** value) const OVERRIDE;
|
| - virtual void AddObserver(PrefStore::Observer* observer) OVERRIDE;
|
| - virtual void RemoveObserver(PrefStore::Observer* observer) OVERRIDE;
|
| - virtual bool HasObservers() const OVERRIDE;
|
| + bool GetValue(const std::string& key,
|
| + const base::Value** value) const override;
|
| + void AddObserver(PrefStore::Observer* observer) override;
|
| + void RemoveObserver(PrefStore::Observer* observer) override;
|
| + bool HasObservers() const override;
|
|
|
| // WriteablePrefStore overrides:
|
| - virtual void SetValue(const std::string& key, base::Value* value) OVERRIDE;
|
| - virtual void RemoveValue(const std::string& key) OVERRIDE;
|
| - virtual bool GetMutableValue(const std::string& key,
|
| - base::Value** value) OVERRIDE;
|
| - virtual void ReportValueChanged(const std::string& key) OVERRIDE;
|
| - virtual void SetValueSilently(const std::string& key,
|
| - base::Value* value) OVERRIDE;
|
| + void SetValue(const std::string& key, base::Value* value) override;
|
| + void RemoveValue(const std::string& key) override;
|
| + bool GetMutableValue(const std::string& key, base::Value** value) override;
|
| + void ReportValueChanged(const std::string& key) override;
|
| + void SetValueSilently(const std::string& key, base::Value* value) override;
|
|
|
| protected:
|
| virtual ~ValueMapPrefStore();
|
|
|