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

Unified Diff: ash/wm/lock_window_state.h

Issue 645513008: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@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
« no previous file with comments | « ash/wm/lock_state_controller_unittest.cc ('k') | ash/wm/mru_window_tracker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/lock_window_state.h
diff --git a/ash/wm/lock_window_state.h b/ash/wm/lock_window_state.h
index c17faf76dc1d0ba5cb70658f754a9f682b212ed1..33a5b0b7a3a4d3c7e2e348bf05755560ed30a9d1 100644
--- a/ash/wm/lock_window_state.h
+++ b/ash/wm/lock_window_state.h
@@ -18,15 +18,15 @@ class LockWindowState : public wm::WindowState::State {
// The |window|'s state object will be modified to use this new window mode
// state handler.
explicit LockWindowState(aura::Window* window);
- virtual ~LockWindowState();
+ ~LockWindowState() override;
// WindowState::State overrides:
- virtual void OnWMEvent(wm::WindowState* window_state,
- const wm::WMEvent* event) override;
- virtual wm::WindowStateType GetType() const override;
- virtual void AttachState(wm::WindowState* window_state,
- wm::WindowState::State* previous_state) override;
- virtual void DetachState(wm::WindowState* window_state) override;
+ void OnWMEvent(wm::WindowState* window_state,
+ const wm::WMEvent* event) override;
+ wm::WindowStateType GetType() const override;
+ void AttachState(wm::WindowState* window_state,
+ wm::WindowState::State* previous_state) override;
+ void DetachState(wm::WindowState* window_state) override;
// Creates new LockWindowState instance and attaches it to |window|.
static wm::WindowState* SetLockWindowState(aura::Window* window);
« no previous file with comments | « ash/wm/lock_state_controller_unittest.cc ('k') | ash/wm/mru_window_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698