Index: ash/drag_drop/drag_drop_tracker.cc |
diff --git a/ash/drag_drop/drag_drop_tracker.cc b/ash/drag_drop/drag_drop_tracker.cc |
index c1ec24441a29db955f0b3dd731c93cd26cf4df59..193dc62054a930c675fb2a90c199f19ac460e70f 100644 |
--- a/ash/drag_drop/drag_drop_tracker.cc |
+++ b/ash/drag_drop/drag_drop_tracker.cc |
@@ -12,7 +12,6 @@ |
#include "ui/aura/window_event_dispatcher.h" |
#include "ui/events/event.h" |
#include "ui/gfx/screen.h" |
-#include "ui/wm/core/coordinate_conversion.h" |
#include "ui/wm/public/activation_delegate.h" |
namespace ash { |
@@ -69,11 +68,12 @@ |
aura::Window* DragDropTracker::GetTarget(const ui::LocatedEvent& event) { |
DCHECK(capture_window_.get()); |
gfx::Point location_in_screen = event.location(); |
- ::wm::ConvertPointToScreen(capture_window_.get(), &location_in_screen); |
+ wm::ConvertPointToScreen(capture_window_.get(), |
+ &location_in_screen); |
aura::Window* root_window_at_point = |
wm::GetRootWindowAt(location_in_screen); |
gfx::Point location_in_root = location_in_screen; |
- ::wm::ConvertPointFromScreen(root_window_at_point, &location_in_root); |
+ wm::ConvertPointFromScreen(root_window_at_point, &location_in_root); |
return root_window_at_point->GetEventHandlerForPoint(location_in_root); |
} |
@@ -85,7 +85,7 @@ |
aura::Window::ConvertPointToTarget(capture_window_.get(), target, |
&target_location); |
gfx::Point location_in_screen = event.location(); |
- ::wm::ConvertPointToScreen(capture_window_.get(), &location_in_screen); |
+ ash::wm::ConvertPointToScreen(capture_window_.get(), &location_in_screen); |
gfx::Point target_root_location = event.root_location(); |
aura::Window::ConvertPointToTarget( |
capture_window_->GetRootWindow(), |