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

Unified Diff: ash/system/tray_update.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
« no previous file with comments | « ash/system/tray_accessibility.cc ('k') | ash/system/tray_update.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/tray_update.h
diff --git a/ash/system/tray_update.h b/ash/system/tray_update.h
index b1d5eb1931f9a20fe3841afd1aad7eeef1cb07da..7de9dae59ca8edf9f56e17da24481ff18a2e1820 100644
--- a/ash/system/tray_update.h
+++ b/ash/system/tray_update.h
@@ -24,17 +24,17 @@ class TrayUpdate : public TrayImageItem,
public UpdateObserver {
public:
explicit TrayUpdate(SystemTray* system_tray);
- virtual ~TrayUpdate();
+ ~TrayUpdate() override;
private:
// Overridden from TrayImageItem.
- virtual bool GetInitialVisibility() override;
- virtual views::View* CreateDefaultView(user::LoginStatus status) override;
- virtual views::View* CreateDetailedView(user::LoginStatus status) override;
- virtual void DestroyDetailedView() override;
+ bool GetInitialVisibility() override;
+ views::View* CreateDefaultView(user::LoginStatus status) override;
+ views::View* CreateDetailedView(user::LoginStatus status) override;
+ void DestroyDetailedView() override;
// Overridden from UpdateObserver.
- virtual void OnUpdateRecommended(const UpdateInfo& info) override;
+ void OnUpdateRecommended(const UpdateInfo& info) override;
// Used to nag the user in case the tray has been hidden too long with an
// unseen update notification.
« no previous file with comments | « ash/system/tray_accessibility.cc ('k') | ash/system/tray_update.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698