| Index: ash/drag_drop/drag_drop_controller.cc
|
| diff --git a/ash/drag_drop/drag_drop_controller.cc b/ash/drag_drop/drag_drop_controller.cc
|
| index 004298c7ee878e3af3e774ea3710b6704748c22e..2ff526fe7681f6452321be3ff29e974547d38d28 100644
|
| --- a/ash/drag_drop/drag_drop_controller.cc
|
| +++ b/ash/drag_drop/drag_drop_controller.cc
|
| @@ -7,6 +7,7 @@
|
| #include "ash/drag_drop/drag_drop_tracker.h"
|
| #include "ash/drag_drop/drag_image_view.h"
|
| #include "ash/shell.h"
|
| +#include "ash/wm/coordinate_conversion.h"
|
| #include "base/bind.h"
|
| #include "base/message_loop/message_loop.h"
|
| #include "base/run_loop.h"
|
| @@ -27,7 +28,6 @@
|
| #include "ui/gfx/rect_conversions.h"
|
| #include "ui/views/views_delegate.h"
|
| #include "ui/views/widget/native_widget_aura.h"
|
| -#include "ui/wm/core/coordinate_conversion.h"
|
| #include "ui/wm/public/drag_drop_delegate.h"
|
|
|
| namespace ash {
|
| @@ -198,7 +198,7 @@
|
| drag_image_vertical_offset = kTouchDragImageVerticalOffset;
|
| }
|
| gfx::Point start_location = root_location;
|
| - ::wm::ConvertPointToScreen(root_window, &start_location);
|
| + ash::wm::ConvertPointToScreen(root_window, &start_location);
|
| drag_image_final_bounds_for_cancel_animation_ = gfx::Rect(
|
| start_location - provider->GetDragImageOffset(),
|
| provider->GetDragImage().size());
|
| @@ -292,8 +292,8 @@
|
| DCHECK(drag_image_.get());
|
| if (drag_image_->visible()) {
|
| gfx::Point root_location_in_screen = event.root_location();
|
| - ::wm::ConvertPointToScreen(target->GetRootWindow(),
|
| - &root_location_in_screen);
|
| + ash::wm::ConvertPointToScreen(target->GetRootWindow(),
|
| + &root_location_in_screen);
|
| drag_image_->SetScreenPosition(
|
| root_location_in_screen - drag_image_offset_);
|
| drag_image_->SetTouchDragOperation(op);
|
|
|