| Index: chrome/browser/ui/prefs/prefs_tab_helper.h
|
| diff --git a/chrome/browser/ui/prefs/prefs_tab_helper.h b/chrome/browser/ui/prefs/prefs_tab_helper.h
|
| index 502e217c89f63fe6fe88d277a5281fb87a11a81c..60c98e4d6d61f247daa2c6b2a51399cefff0099e 100644
|
| --- a/chrome/browser/ui/prefs/prefs_tab_helper.h
|
| +++ b/chrome/browser/ui/prefs/prefs_tab_helper.h
|
| @@ -30,7 +30,7 @@ class PrefRegistrySyncable;
|
| class PrefsTabHelper : public content::NotificationObserver,
|
| public content::WebContentsUserData<PrefsTabHelper> {
|
| public:
|
| - virtual ~PrefsTabHelper();
|
| + ~PrefsTabHelper() override;
|
|
|
| static void InitIncognitoUserPrefStore(OverlayUserPrefStore* pref_store);
|
| static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
|
| @@ -44,9 +44,9 @@ class PrefsTabHelper : public content::NotificationObserver,
|
| friend class content::WebContentsUserData<PrefsTabHelper>;
|
|
|
| // content::NotificationObserver overrides:
|
| - virtual void Observe(int type,
|
| - const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) override;
|
| + void Observe(int type,
|
| + const content::NotificationSource& source,
|
| + const content::NotificationDetails& details) override;
|
|
|
| // Update the WebContents's RendererPreferences.
|
| void UpdateRendererPreferences();
|
|
|