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

Unified Diff: ui/views/widget/desktop_aura/x11_desktop_window_move_client.h

Issue 678073003: 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
Index: ui/views/widget/desktop_aura/x11_desktop_window_move_client.h
diff --git a/ui/views/widget/desktop_aura/x11_desktop_window_move_client.h b/ui/views/widget/desktop_aura/x11_desktop_window_move_client.h
index 4da16c74f275367c6ae5ab6dae702e428c3bceb5..cba840936e1aadd4cb674c0a01e9b5be44cde620 100644
--- a/ui/views/widget/desktop_aura/x11_desktop_window_move_client.h
+++ b/ui/views/widget/desktop_aura/x11_desktop_window_move_client.h
@@ -28,19 +28,19 @@ class VIEWS_EXPORT X11DesktopWindowMoveClient :
public aura::client::WindowMoveClient {
public:
X11DesktopWindowMoveClient();
- virtual ~X11DesktopWindowMoveClient();
+ ~X11DesktopWindowMoveClient() override;
// Overridden from X11WholeScreenMoveLoopDelegate:
- virtual void OnMouseMovement(XMotionEvent* event) override;
- virtual void OnMouseReleased() override;
- virtual void OnMoveLoopEnded() override;
+ void OnMouseMovement(XMotionEvent* event) override;
+ void OnMouseReleased() override;
+ void OnMoveLoopEnded() override;
// Overridden from aura::client::WindowMoveClient:
- virtual aura::client::WindowMoveResult RunMoveLoop(
+ aura::client::WindowMoveResult RunMoveLoop(
aura::Window* window,
const gfx::Vector2d& drag_offset,
aura::client::WindowMoveSource move_source) override;
- virtual void EndMoveLoop() override;
+ void EndMoveLoop() override;
private:
X11WholeScreenMoveLoop move_loop_;
« no previous file with comments | « ui/views/widget/desktop_aura/x11_desktop_handler.h ('k') | ui/views/widget/desktop_aura/x11_topmost_window_finder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698