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

Unified Diff: athena/system/shutdown_dialog.h

Issue 641683003: C++11 override style change for athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: 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: athena/system/shutdown_dialog.h
diff --git a/athena/system/shutdown_dialog.h b/athena/system/shutdown_dialog.h
index fb8d1686619eb7a9b49b66b8b0887085ccb915c1..0c59fba335170e790bf7309590264364287e45c1 100644
--- a/athena/system/shutdown_dialog.h
+++ b/athena/system/shutdown_dialog.h
@@ -24,7 +24,7 @@ namespace athena {
class ShutdownDialog : public PowerButtonObserver {
public:
explicit ShutdownDialog();
- virtual ~ShutdownDialog();
+ ~ShutdownDialog() override;
private:
enum State {
@@ -48,7 +48,7 @@ class ShutdownDialog : public PowerButtonObserver {
void Shutdown();
// PowerButtonObserver:
- virtual void OnPowerButtonStateChanged(
+ void OnPowerButtonStateChanged(
PowerButtonObserver::State state) override;
// |shutdown_warning_message_|'s parent container.

Powered by Google App Engine
This is Rietveld 408576698