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

Unified Diff: ash/system/tray/tray_bar_button_with_title.h

Issue 685483004: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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
« no previous file with comments | « ash/system/tray/tray_background_view.cc ('k') | ash/system/tray/tray_bar_button_with_title.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/tray/tray_bar_button_with_title.h
diff --git a/ash/system/tray/tray_bar_button_with_title.h b/ash/system/tray/tray_bar_button_with_title.h
index 088cfabcbbd9273aa531698140b4ece6939754ee..92e1d5bcb0d9c97bbef2d29d2edc144096663b3b 100644
--- a/ash/system/tray/tray_bar_button_with_title.h
+++ b/ash/system/tray/tray_bar_button_with_title.h
@@ -23,7 +23,7 @@ class TrayBarButtonWithTitle : public views::CustomButton {
TrayBarButtonWithTitle(views::ButtonListener* listener,
int title_id,
int width);
- virtual ~TrayBarButtonWithTitle();
+ ~TrayBarButtonWithTitle() override;
void UpdateButton(bool control_on);
@@ -31,8 +31,8 @@ class TrayBarButtonWithTitle : public views::CustomButton {
class TrayBarButton;
// Overridden from views::CustomButton:
- virtual gfx::Size GetPreferredSize() const override;
- virtual void Layout() override;
+ gfx::Size GetPreferredSize() const override;
+ void Layout() override;
TrayBarButton* image_;
views::Label* title_;
« no previous file with comments | « ash/system/tray/tray_background_view.cc ('k') | ash/system/tray/tray_bar_button_with_title.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698