| Index: chrome/browser/ui/views/profiles/avatar_menu_button.h
|
| diff --git a/chrome/browser/ui/views/profiles/avatar_menu_button.h b/chrome/browser/ui/views/profiles/avatar_menu_button.h
|
| index 85086fa7f465f5cec18d3e131bddf6e8f7fcd22e..d6b335e7aeafd11c3f6b54f483c7e3207ed1bcea 100644
|
| --- a/chrome/browser/ui/views/profiles/avatar_menu_button.h
|
| +++ b/chrome/browser/ui/views/profiles/avatar_menu_button.h
|
| @@ -38,8 +38,8 @@ class AvatarMenuButton : public views::MenuButton,
|
| virtual ~AvatarMenuButton();
|
|
|
| // views::MenuButton:
|
| - virtual const char* GetClassName() const OVERRIDE;
|
| - virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
|
| + virtual const char* GetClassName() const override;
|
| + virtual void OnPaint(gfx::Canvas* canvas) override;
|
|
|
| // Sets the image for the avatar button. Rectangular images, as opposed
|
| // to Chrome avatar icons, will be resized and modified for the title bar.
|
| @@ -53,11 +53,11 @@ class AvatarMenuButton : public views::MenuButton,
|
| private:
|
| // views::ViewTargeterDelegate:
|
| virtual bool DoesIntersectRect(const views::View* target,
|
| - const gfx::Rect& rect) const OVERRIDE;
|
| + const gfx::Rect& rect) const override;
|
|
|
| // views::MenuButtonListener:
|
| virtual void OnMenuButtonClicked(views::View* source,
|
| - const gfx::Point& point) OVERRIDE;
|
| + const gfx::Point& point) override;
|
|
|
| Browser* browser_;
|
| bool disabled_;
|
|
|