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

Unified Diff: ash/system/tray/tray_item_more.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_image_item.h ('k') | ash/system/tray/tray_item_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/tray/tray_item_more.h
diff --git a/ash/system/tray/tray_item_more.h b/ash/system/tray/tray_item_more.h
index 32592b5b10ae992275d66ebad048e5c5d6636d40..81f2ca20a02bb68e20172709da09502c4da47eae 100644
--- a/ash/system/tray/tray_item_more.h
+++ b/ash/system/tray/tray_item_more.h
@@ -22,7 +22,7 @@ class SystemTrayItem;
class TrayItemMore : public ActionableView {
public:
TrayItemMore(SystemTrayItem* owner, bool show_more);
- virtual ~TrayItemMore();
+ ~TrayItemMore() override;
SystemTrayItem* owner() const { return owner_; }
@@ -38,11 +38,11 @@ class TrayItemMore : public ActionableView {
private:
// Overridden from ActionableView.
- virtual bool PerformAction(const ui::Event& event) override;
+ bool PerformAction(const ui::Event& event) override;
// Overridden from views::View.
- virtual void Layout() override;
- virtual void GetAccessibleState(ui::AXViewState* state) override;
+ void Layout() override;
+ void GetAccessibleState(ui::AXViewState* state) override;
SystemTrayItem* owner_;
// True if |more_| should be shown.
« no previous file with comments | « ash/system/tray/tray_image_item.h ('k') | ash/system/tray/tray_item_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698