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

Unified Diff: ash/wm/window_state_unittest.cc

Issue 621133002: replace OVERRIDE and FINAL with override and final in ash/ (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/window_state.cc ('k') | ash/wm/workspace/multi_window_resize_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/window_state_unittest.cc
diff --git a/ash/wm/window_state_unittest.cc b/ash/wm/window_state_unittest.cc
index 3a457286242087d398d4705ad26795ec5b6ff556..79f765a679bb4e5dcc30e22e47b460fa4eb19a28 100644
--- a/ash/wm/window_state_unittest.cc
+++ b/ash/wm/window_state_unittest.cc
@@ -25,22 +25,22 @@ class AlwaysMaximizeTestState : public WindowState::State {
// WindowState::State overrides:
virtual void OnWMEvent(WindowState* window_state,
- const WMEvent* event) OVERRIDE {
+ const WMEvent* event) override {
// We don't do anything here.
}
- virtual WindowStateType GetType() const OVERRIDE {
+ virtual WindowStateType GetType() const override {
return state_type_;
}
virtual void AttachState(
WindowState* window_state,
- WindowState::State* previous_state) OVERRIDE {
+ WindowState::State* previous_state) override {
// We always maximize.
if (state_type_ != WINDOW_STATE_TYPE_MAXIMIZED) {
window_state->Maximize();
state_type_ = WINDOW_STATE_TYPE_MAXIMIZED;
}
}
- virtual void DetachState(WindowState* window_state) OVERRIDE {}
+ virtual void DetachState(WindowState* window_state) override {}
private:
WindowStateType state_type_;
« no previous file with comments | « ash/wm/window_state.cc ('k') | ash/wm/workspace/multi_window_resize_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698