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

Unified Diff: ui/views/widget/desktop_aura/desktop_drag_drop_client_aurax11_unittest.cc

Issue 623293004: replace OVERRIDE and FINAL with override and final in ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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: ui/views/widget/desktop_aura/desktop_drag_drop_client_aurax11_unittest.cc
diff --git a/ui/views/widget/desktop_aura/desktop_drag_drop_client_aurax11_unittest.cc b/ui/views/widget/desktop_aura/desktop_drag_drop_client_aurax11_unittest.cc
index 1008289d1d9e4d40563e523592f4f9613733b9bf..f69d27c9015fe7ee9ecc4efa558f8933d70ef3b2 100644
--- a/ui/views/widget/desktop_aura/desktop_drag_drop_client_aurax11_unittest.cc
+++ b/ui/views/widget/desktop_aura/desktop_drag_drop_client_aurax11_unittest.cc
@@ -87,9 +87,9 @@ class TestMoveLoop : public X11MoveLoop {
// X11MoveLoop:
virtual bool RunMoveLoop(aura::Window* window,
- gfx::NativeCursor cursor) OVERRIDE;
- virtual void UpdateCursor(gfx::NativeCursor cursor) OVERRIDE;
- virtual void EndMoveLoop() OVERRIDE;
+ gfx::NativeCursor cursor) override;
+ virtual void UpdateCursor(gfx::NativeCursor cursor) override;
+ virtual void EndMoveLoop() override;
private:
// Not owned.
@@ -153,9 +153,9 @@ class TestDragDropClient : public DesktopDragDropClientAuraX11 {
private:
// DesktopDragDropClientAuraX11:
virtual scoped_ptr<X11MoveLoop> CreateMoveLoop(
- X11MoveLoopDelegate* delegate) OVERRIDE;
- virtual ::Window FindWindowFor(const gfx::Point& screen_point) OVERRIDE;
- virtual void SendXClientEvent(::Window xid, XEvent* event) OVERRIDE;
+ X11MoveLoopDelegate* delegate) override;
+ virtual ::Window FindWindowFor(const gfx::Point& screen_point) override;
+ virtual void SendXClientEvent(::Window xid, XEvent* event) override;
// The XID of the window which initiated the drag.
::Window source_xid_;
@@ -366,7 +366,7 @@ class DesktopDragDropClientAuraX11Test : public ViewsTestBase {
}
// ViewsTestBase:
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
ViewsTestBase::SetUp();
// Create widget to initiate the drags.
@@ -386,7 +386,7 @@ class DesktopDragDropClientAuraX11Test : public ViewsTestBase {
client_->Init();
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
client_.reset();
cursor_manager_.reset();
widget_.reset();

Powered by Google App Engine
This is Rietveld 408576698