| 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.
|
|
|