Index: ui/views/drag_utils.cc |
diff --git a/ui/views/drag_utils.cc b/ui/views/drag_utils.cc |
index 840d75febd9e7d47ed9e86772b1041dcc1f1cf15..87fa42bc631f7c96024b77cfa3af0f233ee23196 100644 |
--- a/ui/views/drag_utils.cc |
+++ b/ui/views/drag_utils.cc |
@@ -34,6 +34,7 @@ void RunShellDrag(gfx::NativeView view, |
const gfx::Point& location, |
int operation, |
ui::DragDropTypes::DragEventSource source) { |
+#if !defined(OS_MACOSX) |
gfx::Point root_location(location); |
aura::Window* root_window = view->GetRootWindow(); |
aura::Window::ConvertPointToTarget(view, root_window, &root_location); |
@@ -41,6 +42,7 @@ void RunShellDrag(gfx::NativeView view, |
aura::client::GetDragDropClient(root_window)->StartDragAndDrop( |
data, root_window, view, root_location, operation, source); |
} |
+#endif |
} |
gfx::Canvas* GetCanvasForDragImage(views::Widget* widget, |