Index: base/prefs/pref_notifier_impl.h |
diff --git a/base/prefs/pref_notifier_impl.h b/base/prefs/pref_notifier_impl.h |
index 1aa243f64beec2d357a3a88adbe8c8fd712ec899..3f4c254c416a6ec803028f9fe4304f6dbbb671c3 100644 |
--- a/base/prefs/pref_notifier_impl.h |
+++ b/base/prefs/pref_notifier_impl.h |
@@ -25,7 +25,7 @@ class BASE_PREFS_EXPORT PrefNotifierImpl |
public: |
PrefNotifierImpl(); |
explicit PrefNotifierImpl(PrefService* pref_service); |
- virtual ~PrefNotifierImpl(); |
+ ~PrefNotifierImpl() override; |
// If the pref at the given path changes, we call the observer's |
// OnPreferenceChanged method. |
@@ -41,8 +41,8 @@ class BASE_PREFS_EXPORT PrefNotifierImpl |
protected: |
// PrefNotifier overrides. |
- virtual void OnPreferenceChanged(const std::string& pref_name) override; |
- virtual void OnInitializationCompleted(bool succeeded) override; |
+ void OnPreferenceChanged(const std::string& pref_name) override; |
+ void OnInitializationCompleted(bool succeeded) override; |
// A map from pref names to a list of observers. Observers get fired in the |
// order they are added. These should only be accessed externally for unit |