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

Unified Diff: ash/wm/resize_shadow_and_cursor_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/resize_handle_window_targeter.h ('k') | ash/wm/resize_shadow_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/resize_shadow_and_cursor_unittest.cc
diff --git a/ash/wm/resize_shadow_and_cursor_unittest.cc b/ash/wm/resize_shadow_and_cursor_unittest.cc
index b6fd5e6c0a1c1c2688e5afde934cd31dacb3e4ad..285cbf9e7e2cd83ee06b667c7454929a212ca32c 100644
--- a/ash/wm/resize_shadow_and_cursor_unittest.cc
+++ b/ash/wm/resize_shadow_and_cursor_unittest.cc
@@ -30,17 +30,17 @@ class TestWidgetDelegate : public views::WidgetDelegateView {
virtual ~TestWidgetDelegate() {}
// views::WidgetDelegateView overrides:
- virtual bool CanResize() const OVERRIDE {
+ virtual bool CanResize() const override {
return true;
}
- virtual bool CanMaximize() const OVERRIDE {
+ virtual bool CanMaximize() const override {
return true;
}
- virtual bool CanMinimize() const OVERRIDE {
+ virtual bool CanMinimize() const override {
return true;
}
virtual views::NonClientFrameView* CreateNonClientFrameView(
- views::Widget* widget) OVERRIDE {
+ views::Widget* widget) override {
return new ash::CustomFrameViewAsh(widget);
}
@@ -58,7 +58,7 @@ class ResizeShadowAndCursorTest : public AshTestBase {
virtual ~ResizeShadowAndCursorTest() {}
// AshTestBase override:
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
AshTestBase::SetUp();
views::Widget* widget(views::Widget::CreateWindowWithContextAndBounds(
« no previous file with comments | « ash/wm/resize_handle_window_targeter.h ('k') | ash/wm/resize_shadow_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698