| 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 af4cb4b5de877545ac904288dee4c37accc7cd87..f3da1c91bc0ff2341c897bbe23c62cd80978bf0a 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) {
|
|
|