From ca70609833412dd0cdc758724a92681474d62ee2 Mon Sep 17 00:00:00 2001 From: "ben@chromium.org" Date: Wed, 8 Aug 2012 18:05:25 +0000 Subject: 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 --- ui/views/drag_utils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/views/drag_utils.cc') 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); -- cgit v1.1