| Index: ui/message_center/views/notification_button.h
|
| diff --git a/ui/message_center/views/notification_button.h b/ui/message_center/views/notification_button.h
|
| index 347964a31922837ca2630ff35b2d842f84f6e9a3..7c483ea22108cec3b409d77563560a69c7be7c7a 100644
|
| --- a/ui/message_center/views/notification_button.h
|
| +++ b/ui/message_center/views/notification_button.h
|
| @@ -21,22 +21,22 @@ namespace message_center {
|
| class NotificationButton : public views::CustomButton {
|
| public:
|
| NotificationButton(views::ButtonListener* listener);
|
| - virtual ~NotificationButton();
|
| + ~NotificationButton() override;
|
|
|
| void SetIcon(const gfx::ImageSkia& icon);
|
| void SetTitle(const base::string16& title);
|
|
|
| // Overridden from views::View:
|
| - virtual gfx::Size GetPreferredSize() const override;
|
| - virtual int GetHeightForWidth(int width) const override;
|
| - virtual void OnPaint(gfx::Canvas* canvas) override;
|
| - virtual void OnFocus() override;
|
| - virtual void OnBlur() override;
|
| - virtual void ViewHierarchyChanged(
|
| + gfx::Size GetPreferredSize() const override;
|
| + int GetHeightForWidth(int width) const override;
|
| + void OnPaint(gfx::Canvas* canvas) override;
|
| + void OnFocus() override;
|
| + void OnBlur() override;
|
| + void ViewHierarchyChanged(
|
| const ViewHierarchyChangedDetails& details) override;
|
|
|
| // Overridden from views::CustomButton:
|
| - virtual void StateChanged() override;
|
| + void StateChanged() override;
|
|
|
| private:
|
| views::ImageView* icon_;
|
|
|