summaryrefslogtreecommitdiffstats
path: root/ui/views/drag_utils.cc
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-08 18:05:25 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-08 18:05:25 +0000
commitca70609833412dd0cdc758724a92681474d62ee2 (patch)
tree3f101230764f644cd1c0a2b7cb52aa556991aa82 /ui/views/drag_utils.cc
parentcb3221b804cdad65aaade7faff1f612644dee4a3 (diff)
downloadchromium_src-ca70609833412dd0cdc758724a92681474d62ee2.zip
chromium_src-ca70609833412dd0cdc758724a92681474d62ee2.tar.gz
chromium_src-ca70609833412dd0cdc758724a92681474d62ee2.tar.bz2
Convert Aura to use ui::Event.
http://crbug.com/125937 TEST=existing Review URL: https://chromiumcodereview.appspot.com/10827145 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150587 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views/drag_utils.cc')
-rw-r--r--ui/views/drag_utils.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/views/drag_utils.cc b/ui/views/drag_utils.cc
index 09812d9..f9efd2e 100644
--- a/ui/views/drag_utils.cc
+++ b/ui/views/drag_utils.cc
@@ -47,7 +47,7 @@ void RunShellDrag(gfx::NativeView view,
#if defined(USE_AURA)
gfx::Point root_location(location);
aura::RootWindow* root_window = view->GetRootWindow();
- aura::Window::ConvertPointToWindow(view, root_window, &root_location);
+ aura::Window::ConvertPointToTarget(view, root_window, &root_location);
if (aura::client::GetDragDropClient(root_window)) {
aura::client::GetDragDropClient(root_window)->StartDragAndDrop(
data, root_location, operation);