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

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: 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 | « athena/system/orientation_controller.h ('k') | athena/system/shutdown_dialog.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/system/shutdown_dialog.h
diff --git a/athena/system/shutdown_dialog.h b/athena/system/shutdown_dialog.h
index fb8d1686619eb7a9b49b66b8b0887085ccb915c1..8409710ad4c31345a622a023a08cea8c3206fdbd 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,8 +48,7 @@ class ShutdownDialog : public PowerButtonObserver {
void Shutdown();
// PowerButtonObserver:
- virtual void OnPowerButtonStateChanged(
- PowerButtonObserver::State state) override;
+ void OnPowerButtonStateChanged(PowerButtonObserver::State state) override;
// |shutdown_warning_message_|'s parent container.
aura::Window* warning_message_container_;
« no previous file with comments | « athena/system/orientation_controller.h ('k') | athena/system/shutdown_dialog.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698