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

Unified Diff: ui/message_center/views/notification_button.h

Issue 657923005: Standardize usage of virtual/override/final specifiers. (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: 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_;
« no previous file with comments | « ui/message_center/views/message_view_context_menu_controller.h ('k') | ui/message_center/views/notification_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698