| Index: base/prefs/pref_value_store.h
|
| diff --git a/base/prefs/pref_value_store.h b/base/prefs/pref_value_store.h
|
| index a0409eff5827c4eb378cfaf526b139f66162a144..db82a822e1d38f461215c72ba4ec5d4a12446ec8 100644
|
| --- a/base/prefs/pref_value_store.h
|
| +++ b/base/prefs/pref_value_store.h
|
| @@ -149,7 +149,7 @@ class BASE_PREFS_EXPORT PrefValueStore {
|
| class PrefStoreKeeper : public PrefStore::Observer {
|
| public:
|
| PrefStoreKeeper();
|
| - virtual ~PrefStoreKeeper();
|
| + ~PrefStoreKeeper() override;
|
|
|
| // Takes ownership of |pref_store|.
|
| void Initialize(PrefValueStore* store,
|
| @@ -161,8 +161,8 @@ class BASE_PREFS_EXPORT PrefValueStore {
|
|
|
| private:
|
| // PrefStore::Observer implementation.
|
| - virtual void OnPrefValueChanged(const std::string& key) override;
|
| - virtual void OnInitializationCompleted(bool succeeded) override;
|
| + void OnPrefValueChanged(const std::string& key) override;
|
| + void OnInitializationCompleted(bool succeeded) override;
|
|
|
| // PrefValueStore this keeper is part of.
|
| PrefValueStore* pref_value_store_;
|
|
|