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

Unified Diff: ash/wm/default_window_resizer.h

Issue 13896026: Stick windows to sides of workspaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Dock with zero width (comments on unit tests) Created 7 years, 6 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: 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_;

Powered by Google App Engine
This is Rietveld 408576698