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

Unified Diff: ash/wm/drag_window_resizer.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/dock/docked_window_resizer_unittest.cc ('k') | ash/wm/event_client_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/drag_window_resizer.h
diff --git a/ash/wm/drag_window_resizer.h b/ash/wm/drag_window_resizer.h
index a4f4b306f38492429dc23928d8da2b467e7ad73e..478016871c2e45d1c6a0e62281e3a3ee462f805d 100644
--- a/ash/wm/drag_window_resizer.h
+++ b/ash/wm/drag_window_resizer.h
@@ -19,7 +19,7 @@ class DragWindowController;
// drag windows across displays.
class ASH_EXPORT DragWindowResizer : public WindowResizer {
public:
- virtual ~DragWindowResizer();
+ ~DragWindowResizer() override;
// Creates a new DragWindowResizer. The caller takes ownership of the
// returned object. The ownership of |next_window_resizer| is taken by the
@@ -28,9 +28,9 @@ class ASH_EXPORT DragWindowResizer : public WindowResizer {
wm::WindowState* window_state);
// WindowResizer:
- virtual void Drag(const gfx::Point& location, int event_flags) override;
- virtual void CompleteDrag() override;
- virtual void RevertDrag() override;
+ void Drag(const gfx::Point& location, int event_flags) override;
+ void CompleteDrag() override;
+ void RevertDrag() override;
private:
FRIEND_TEST_ALL_PREFIXES(DragWindowResizerTest, DragWindowController);
« no previous file with comments | « ash/wm/dock/docked_window_resizer_unittest.cc ('k') | ash/wm/event_client_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698