Chromium Code Reviews| Index: ash/wm/default_window_resizer.h |
| diff --git a/ash/wm/default_window_resizer.h b/ash/wm/default_window_resizer.h |
| index 0ef21dc9eec25b158c9ee73f896c0a1bb550489e..57e6867d8a9960940988fa993d5b1d8a84d4c03c 100644 |
| --- a/ash/wm/default_window_resizer.h |
| +++ b/ash/wm/default_window_resizer.h |
| @@ -31,13 +31,16 @@ class ASH_EXPORT DefaultWindowResizer : public WindowResizer { |
| } |
| aura::Window* target_window() const { return details_.window; } |
| - // WindowResizer overides: |
| + // WindowResizer: |
| virtual void Drag(const gfx::Point& location, int event_flags) OVERRIDE; |
| virtual void CompleteDrag(int event_flags) OVERRIDE; |
| virtual void RevertDrag() OVERRIDE; |
| virtual aura::Window* GetTarget() OVERRIDE; |
| private: |
| + // WindowResizer: |
| + virtual const gfx::Point& GetInitialLocationForTest() const OVERRIDE; |
|
flackr
2013/06/17 18:49:42
protected
varkha
2013/06/17 19:05:36
Done.
|
| + |
| explicit DefaultWindowResizer(const Details& details); |
| const Details details_; |