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

Unified Diff: chrome/browser/profiles/avatar_menu.h

Issue 654223009: Standardize usage of virtual/override/final in chrome/browser/profiles/ (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/profiles/avatar_menu.h
diff --git a/chrome/browser/profiles/avatar_menu.h b/chrome/browser/profiles/avatar_menu.h
index 1bdf2ae4644463fc0fef4922e4b50d22322b5419..8d746e5ed6876cfa78855c0a5f93b8731491b963 100644
--- a/chrome/browser/profiles/avatar_menu.h
+++ b/chrome/browser/profiles/avatar_menu.h
@@ -87,7 +87,7 @@ class AvatarMenu :
AvatarMenu(ProfileInfoInterface* profile_cache,
AvatarMenuObserver* observer,
Browser* browser);
- virtual ~AvatarMenu();
+ ~AvatarMenu() override;
// True if avatar menu should be displayed.
static bool ShouldShowAvatarMenu();
@@ -147,14 +147,14 @@ class AvatarMenu :
bool ShouldShowEditProfileLink() const;
// content::NotificationObserver:
- 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;
private:
#if defined(ENABLE_MANAGED_USERS)
// SupervisedUserServiceObserver:
- virtual void OnCustodianInfoChanged() override;
+ void OnCustodianInfoChanged() override;
#endif
// The model that provides the list of menu items.

Powered by Google App Engine
This is Rietveld 408576698