| Index: content/browser/renderer_host/input/web_input_event_builders_win.cc
|
| diff --git a/content/browser/renderer_host/input/web_input_event_builders_win.cc b/content/browser/renderer_host/input/web_input_event_builders_win.cc
|
| index 33701fb1ab2e8fa70efcdba0cf28122d66912870..c57815c26579b4104c07689880db3bf5e752e69a 100644
|
| --- a/content/browser/renderer_host/input/web_input_event_builders_win.cc
|
| +++ b/content/browser/renderer_host/input/web_input_event_builders_win.cc
|
| @@ -8,7 +8,7 @@
|
| #include "content/browser/renderer_host/input/web_input_event_util.h"
|
| #include "ui/events/blink/blink_event_util.h"
|
| #include "ui/events/event_utils.h"
|
| -#include "ui/gfx/win/dpi.h"
|
| +#include "ui/gfx/screen_win.h"
|
|
|
| using blink::WebInputEvent;
|
| using blink::WebKeyboardEvent;
|
| @@ -163,7 +163,7 @@ WebMouseEvent WebMouseEventBuilder::Build(HWND hwnd,
|
| ClientToScreen(hwnd, &global_point);
|
|
|
| // We need to convert the global point back to DIP before using it.
|
| - gfx::Point dip_global_point = gfx::win::ScreenToDIPPoint(
|
| + gfx::Point dip_global_point = gfx::ScreenWin::ScreenToDIPPoint(
|
| gfx::Point(global_point.x, global_point.y));
|
|
|
| result.globalX = dip_global_point.x();
|
|
|