Chromium Code Reviews| Index: ash/wm/panels/panel_window_resizer.h |
| diff --git a/ash/wm/panels/panel_window_resizer.h b/ash/wm/panels/panel_window_resizer.h |
| index 5dbc32d0aea2bd612dbc76b114b23a5e4d368323..b24ad9373ba01f5e0fa036c944e79a84d382db3d 100644 |
| --- a/ash/wm/panels/panel_window_resizer.h |
| +++ b/ash/wm/panels/panel_window_resizer.h |
| @@ -30,7 +30,7 @@ class ASH_EXPORT PanelWindowResizer : public WindowResizer { |
| const gfx::Point& location, |
| int window_component); |
| - // 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; |
| @@ -65,6 +65,8 @@ class ASH_EXPORT PanelWindowResizer : public WindowResizer { |
| const Details details_; |
| + gfx::Point last_mouse_location_; |
|
sky
2013/06/12 21:50:17
last_location_ (since not necessarily mouse).
varkha
2013/06/13 05:02:11
Done.
|
| + |
| // Wraps a window resizer and adds panel detaching / reattaching and snapping |
| // to launcher behavior during drags. |
| scoped_ptr<WindowResizer> next_window_resizer_; |
| @@ -88,6 +90,6 @@ class ASH_EXPORT PanelWindowResizer : public WindowResizer { |
| DISALLOW_COPY_AND_ASSIGN(PanelWindowResizer); |
| }; |
| -} // namespace aura |
| +} // namespace ash |
| #endif // ASH_WM_PANELS_PANEL_WINDOW_RESIZER_H_ |