| Index: content/browser/renderer_host/input/input_router_impl.cc
|
| diff --git a/content/browser/renderer_host/input/input_router_impl.cc b/content/browser/renderer_host/input/input_router_impl.cc
|
| index 4c7f97b007106f1ea110bcfdf737ea926e37fa99..e6ddcd9ed7f0604b966f382d39266f4c7ed7f984 100644
|
| --- a/content/browser/renderer_host/input/input_router_impl.cc
|
| +++ b/content/browser/renderer_host/input/input_router_impl.cc
|
| @@ -294,8 +294,10 @@ void InputRouterImpl::OnGestureEventAck(
|
| ack_handler_->OnGestureEventAck(event, ack_result);
|
| }
|
|
|
| -void InputRouterImpl::ForwardGestureEvent(const blink::WebGestureEvent& event) {
|
| - client_->ForwardGestureEvent(event);
|
| +void InputRouterImpl::ForwardGestureEventWithLatencyInfo(
|
| + const blink::WebGestureEvent& event,
|
| + const ui::LatencyInfo& latency_info) {
|
| + client_->ForwardGestureEventWithLatencyInfo(event, latency_info);
|
| }
|
|
|
| void InputRouterImpl::SendMouseWheelEventImmediately(
|
|
|