| Index: content/browser/frame_host/render_widget_host_view_child_frame.cc
|
| diff --git a/content/browser/frame_host/render_widget_host_view_child_frame.cc b/content/browser/frame_host/render_widget_host_view_child_frame.cc
|
| index 4035b1067a1d607195262e2c96b66455dd9ed4a5..c26ee44afb57a95f2093317c4d02057a3c73f347 100644
|
| --- a/content/browser/frame_host/render_widget_host_view_child_frame.cc
|
| +++ b/content/browser/frame_host/render_widget_host_view_child_frame.cc
|
| @@ -494,14 +494,16 @@ void RenderWidgetHostViewChildFrame::ProcessKeyboardEvent(
|
| }
|
|
|
| void RenderWidgetHostViewChildFrame::ProcessMouseEvent(
|
| - const blink::WebMouseEvent& event) {
|
| - host_->ForwardMouseEvent(event);
|
| + const blink::WebMouseEvent& event,
|
| + const ui::LatencyInfo& latency) {
|
| + host_->ForwardMouseEventWithLatencyInfo(event, latency);
|
| }
|
|
|
| void RenderWidgetHostViewChildFrame::ProcessMouseWheelEvent(
|
| - const blink::WebMouseWheelEvent& event) {
|
| + const blink::WebMouseWheelEvent& event,
|
| + const ui::LatencyInfo& latency) {
|
| if (event.deltaX != 0 || event.deltaY != 0)
|
| - host_->ForwardWheelEvent(event);
|
| + host_->ForwardWheelEventWithLatencyInfo(event, latency);
|
| }
|
|
|
| void RenderWidgetHostViewChildFrame::ProcessTouchEvent(
|
|
|