Index: chrome/browser/profiles/avatar_menu_actions_desktop.h |
diff --git a/chrome/browser/profiles/avatar_menu_actions_desktop.h b/chrome/browser/profiles/avatar_menu_actions_desktop.h |
index 031923fdd4336cff1a948af487a632e73be9c25b..a015c37fed70e3d512c4547629d0f08e87e054aa 100644 |
--- a/chrome/browser/profiles/avatar_menu_actions_desktop.h |
+++ b/chrome/browser/profiles/avatar_menu_actions_desktop.h |
@@ -16,14 +16,14 @@ class Profile; |
class AvatarMenuActionsDesktop : public AvatarMenuActions { |
public: |
AvatarMenuActionsDesktop(); |
- virtual ~AvatarMenuActionsDesktop(); |
+ ~AvatarMenuActionsDesktop() override; |
// AvatarMenuActions overrides: |
- virtual void AddNewProfile(ProfileMetrics::ProfileAdd type) override; |
- virtual void EditProfile(Profile* profile, size_t index) override; |
- virtual bool ShouldShowAddNewProfileLink() const override; |
- virtual bool ShouldShowEditProfileLink() const override; |
- virtual void ActiveBrowserChanged(Browser* browser) override; |
+ void AddNewProfile(ProfileMetrics::ProfileAdd type) override; |
+ void EditProfile(Profile* profile, size_t index) override; |
+ bool ShouldShowAddNewProfileLink() const override; |
+ bool ShouldShowEditProfileLink() const override; |
+ void ActiveBrowserChanged(Browser* browser) override; |
private: |
// Browser in which this avatar menu resides. Weak. |