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

Unified Diff: ash/system/overview/overview_button_tray.h

Issue 683473005: 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
Index: ash/system/overview/overview_button_tray.h
diff --git a/ash/system/overview/overview_button_tray.h b/ash/system/overview/overview_button_tray.h
index 94d9099b2751a8dd066043f80d56be024058a98d..1aca24a93af144de16c27e395d5f18bbc0462c92 100644
--- a/ash/system/overview/overview_button_tray.h
+++ b/ash/system/overview/overview_button_tray.h
@@ -25,26 +25,25 @@ class ASH_EXPORT OverviewButtonTray : public TrayBackgroundView,
public ShellObserver {
public:
explicit OverviewButtonTray(StatusAreaWidget* status_area_widget);
- virtual ~OverviewButtonTray();
+ ~OverviewButtonTray() override;
// Updates the tray's visibility based on the LoginStatus and the current
// state of MaximizeMode
virtual void UpdateAfterLoginStatusChange(user::LoginStatus status);
// ActionableView:
- virtual bool PerformAction(const ui::Event& event) override;
+ bool PerformAction(const ui::Event& event) override;
// ShellObserver:
- virtual void OnMaximizeModeStarted() override;
- virtual void OnMaximizeModeEnded() override;
- virtual void OnOverviewModeEnding() override;
+ void OnMaximizeModeStarted() override;
+ void OnMaximizeModeEnded() override;
+ void OnOverviewModeEnding() override;
// TrayBackgroundView:
- virtual bool ClickedOutsideBubble() override;
- virtual base::string16 GetAccessibleNameForTray() override;
- virtual void HideBubbleWithView(
- const views::TrayBubbleView* bubble_view) override;
- virtual void SetShelfAlignment(ShelfAlignment alignment) override;
+ bool ClickedOutsideBubble() override;
+ base::string16 GetAccessibleNameForTray() override;
+ void HideBubbleWithView(const views::TrayBubbleView* bubble_view) override;
+ void SetShelfAlignment(ShelfAlignment alignment) override;
private:
friend class OverviewButtonTrayTest;
« no previous file with comments | « ash/system/locale/locale_notification_controller.cc ('k') | ash/system/overview/overview_button_tray_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698