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

Unified Diff: ash/system/chromeos/session/tray_session_length_limit.h

Issue 800983006: Update {virtual,override,final} to follow C++11 style in ash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Workaround Created 5 years, 11 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/chromeos/session/tray_session_length_limit.h
diff --git a/ash/system/chromeos/session/tray_session_length_limit.h b/ash/system/chromeos/session/tray_session_length_limit.h
index 219ea81f62c69382ac4f09e1498a97b73974b58b..8afe5aa85dbd20a9be57ec114c6f4bfcdb281afe 100644
--- a/ash/system/chromeos/session/tray_session_length_limit.h
+++ b/ash/system/chromeos/session/tray_session_length_limit.h
@@ -32,15 +32,15 @@ public:
};
explicit TraySessionLengthLimit(SystemTray* system_tray);
- virtual ~TraySessionLengthLimit();
+ ~TraySessionLengthLimit() override;
// SystemTrayItem:
- virtual views::View* CreateDefaultView(user::LoginStatus status) override;
- virtual void DestroyDefaultView() override;
+ views::View* CreateDefaultView(user::LoginStatus status) override;
+ void DestroyDefaultView() override;
// SessionLengthLimitObserver:
- virtual void OnSessionStartTimeChanged() override;
- virtual void OnSessionLengthLimitChanged() override;
+ void OnSessionStartTimeChanged() override;
+ void OnSessionLengthLimitChanged() override;
private:
friend class test::TraySessionLengthLimitTest;

Powered by Google App Engine
This is Rietveld 408576698