| Index: ui/app_list/views/apps_grid_view.cc
|
| diff --git a/ui/app_list/views/apps_grid_view.cc b/ui/app_list/views/apps_grid_view.cc
|
| index 10279e682f3085659d00b3031a457f69ee3ae67c..630bf6f8bb93cb29928976217d846913a959b979 100644
|
| --- a/ui/app_list/views/apps_grid_view.cc
|
| +++ b/ui/app_list/views/apps_grid_view.cc
|
| @@ -46,7 +46,7 @@
|
| #include "ui/base/dragdrop/drop_target_win.h"
|
| #include "ui/base/dragdrop/os_exchange_data.h"
|
| #include "ui/base/dragdrop/os_exchange_data_provider_win.h"
|
| -#include "ui/gfx/win/dpi.h"
|
| +#include "ui/gfx/screen_win.h"
|
| #endif
|
|
|
| namespace app_list {
|
| @@ -336,7 +336,8 @@ class SynchronousDrag : public ui::DragSourceWin {
|
| GetCursorPos(&p);
|
| ScreenToClient(GetGridViewHWND(), &p);
|
| gfx::Point grid_view_pt(p.x, p.y);
|
| - grid_view_pt = gfx::win::ScreenToDIPPoint(grid_view_pt);
|
| + grid_view_pt =
|
| + gfx::ScreenWin::ClientToDIPPoint(GetGridViewHWND(), grid_view_pt);
|
| views::View::ConvertPointFromWidget(grid_view_, &grid_view_pt);
|
| return grid_view_pt;
|
| }
|
|
|