| Index: content/browser/frame_host/render_widget_host_view_guest.cc
|
| diff --git a/content/browser/frame_host/render_widget_host_view_guest.cc b/content/browser/frame_host/render_widget_host_view_guest.cc
|
| index 47d8f795e37d1d122efabe46fa8432ed89cadfc7..522b67d8be4ccfa4517c315a5fa85bdb5c221fbf 100644
|
| --- a/content/browser/frame_host/render_widget_host_view_guest.cc
|
| +++ b/content/browser/frame_host/render_widget_host_view_guest.cc
|
| @@ -536,8 +536,8 @@ bool RenderWidgetHostViewGuest::ForwardGestureEventToRenderer(
|
|
|
| blink::WebGestureEvent web_gesture =
|
| MakeWebGestureEventFromUIEvent(*gesture);
|
| - const gfx::Point& client_point = gesture->location();
|
| - const gfx::Point& screen_point = gesture->location();
|
| + const gfx::Point& client_point = gfx::ToFlooredPoint(gesture->location());
|
| + const gfx::Point& screen_point = gfx::ToFlooredPoint(gesture->location());
|
|
|
| web_gesture.x = client_point.x();
|
| web_gesture.y = client_point.y();
|
|
|