Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1055)

Unified Diff: chrome/browser/ui/prefs/prefs_tab_helper.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698