summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui')
-rw-r--r--chrome/browser/ui/views/tabs/tab_drag_controller.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/ui/views/tabs/tab_drag_controller.cc b/chrome/browser/ui/views/tabs/tab_drag_controller.cc
index 5c1dd07..bec49ea 100644
--- a/chrome/browser/ui/views/tabs/tab_drag_controller.cc
+++ b/chrome/browser/ui/views/tabs/tab_drag_controller.cc
@@ -8,7 +8,6 @@
#include <set>
#include "ash/accelerators/accelerator_commands.h"
-#include "ash/wm/coordinate_conversion.h"
#include "ash/wm/window_state.h"
#include "base/auto_reset.h"
#include "base/callback.h"
@@ -41,6 +40,7 @@
#include "ui/views/focus/view_storage.h"
#include "ui/views/widget/root_view.h"
#include "ui/views/widget/widget.h"
+#include "ui/wm/core/coordinate_conversion.h"
#include "ui/wm/core/window_modality_controller.h"
using base::UserMetricsAction;
@@ -1714,7 +1714,7 @@ gfx::Point TabDragController::GetCursorScreenPoint() {
// TODO(tdresser): Switch to using gfx::PointF. See crbug.com/337824.
gfx::Point touch_point = gfx::ToFlooredPoint(touch_point_f);
DCHECK(got_touch_point);
- ash::wm::ConvertPointToScreen(widget_window->GetRootWindow(), &touch_point);
+ wm::ConvertPointToScreen(widget_window->GetRootWindow(), &touch_point);
return touch_point;
}