| Index: content/renderer/input/input_event_filter.cc
|
| diff --git a/content/renderer/input/input_event_filter.cc b/content/renderer/input/input_event_filter.cc
|
| index 160e083394edd83ad5cbac6a66e23900cc49296a..f119ae8e9430ee67cd6e56fdb664b644b6a36601 100644
|
| --- a/content/renderer/input/input_event_filter.cc
|
| +++ b/content/renderer/input/input_event_filter.cc
|
| @@ -108,9 +108,11 @@ void InputEventFilter::DispatchNonBlockingEventToMainThread(
|
| }
|
| }
|
|
|
| -void InputEventFilter::NotifyInputEventHandled(int routing_id,
|
| - blink::WebInputEvent::Type type,
|
| - InputEventAckState ack_result) {
|
| +void InputEventFilter::NotifyInputEventHandled(
|
| + int routing_id,
|
| + blink::WebInputEvent::Type type,
|
| + blink::WebInputEventResult result,
|
| + InputEventAckState ack_result) {
|
| DCHECK(main_task_runner_->BelongsToCurrentThread());
|
| scoped_refptr<MainThreadEventQueue> queue;
|
| {
|
| @@ -121,7 +123,7 @@ void InputEventFilter::NotifyInputEventHandled(int routing_id,
|
| queue = iter->second;
|
| }
|
|
|
| - queue->EventHandled(type, ack_result);
|
| + queue->EventHandled(type, result, ack_result);
|
| }
|
|
|
| void InputEventFilter::ProcessRafAlignedInput(int routing_id) {
|
|
|