diff options
author | yusukes@chromium.org <yusukes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-09 07:12:48 +0000 |
---|---|---|
committer | yusukes@chromium.org <yusukes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-09 07:12:48 +0000 |
commit | e79f26e79c7a547daea7ffb9fed3755b82641077 (patch) | |
tree | ab87a149931ec4161eb0f0acbdccae8e7be0631f /ash/display/screen_position_controller.h | |
parent | 3b6bd997382b2a8a3d8bbfb3cf70a10f4e011de6 (diff) | |
download | chromium_src-e79f26e79c7a547daea7ffb9fed3755b82641077.zip chromium_src-e79f26e79c7a547daea7ffb9fed3755b82641077.tar.gz chromium_src-e79f26e79c7a547daea7ffb9fed3755b82641077.tar.bz2 |
Improve WorkspaceWindowResizer::CompleteDrag() so that the function moves the window to a root window where the cursor is currently on.
This CL depends on http://codereview.chromium.org/10834097/ .
BUG=136816
TEST=try
Review URL: https://chromiumcodereview.appspot.com/10836065
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150762 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/display/screen_position_controller.h')
-rw-r--r-- | ash/display/screen_position_controller.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ash/display/screen_position_controller.h b/ash/display/screen_position_controller.h index 0d39480..f83affb 100644 --- a/ash/display/screen_position_controller.h +++ b/ash/display/screen_position_controller.h @@ -22,7 +22,8 @@ class ScreenPositionController : public aura::client::ScreenPositionClient { virtual void ConvertPointFromScreen(const aura::Window* window, gfx::Point* point) OVERRIDE; virtual void SetBounds(aura::Window* window, - const gfx::Rect& bounds) OVERRIDE; + const gfx::Rect& bounds, + const gfx::Display& display) OVERRIDE; private: DISALLOW_COPY_AND_ASSIGN(ScreenPositionController); |