| 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);
|
|
|