Chromium Code Reviews| Index: content/renderer/input/input_event_filter.h |
| diff --git a/content/renderer/input/input_event_filter.h b/content/renderer/input/input_event_filter.h |
| index 3a953fd9180e7f1cef9d244d46c1625b80e16c33..cc089ed7eb6dc9e90f5994f19fd86cf58ef342f9 100644 |
| --- a/content/renderer/input/input_event_filter.h |
| +++ b/content/renderer/input/input_event_filter.h |
| @@ -68,7 +68,8 @@ class CONTENT_EXPORT InputEventFilter : public InputHandlerManagerClient, |
| void DidStartFlinging(int routing_id) override; |
| void DidStopFlinging(int routing_id) override; |
| void NotifyInputEventHandled(int routing_id, |
| - blink::WebInputEvent::Type type) override; |
| + blink::WebInputEvent::Type type, |
| + InputEventAckState ack_result) override; |
| // IPC::MessageFilter methods: |
| void OnFilterAdded(IPC::Sender* sender) override; |
| @@ -81,6 +82,10 @@ class CONTENT_EXPORT InputEventFilter : public InputHandlerManagerClient, |
| const blink::WebInputEvent* event, |
| const ui::LatencyInfo& latency, |
| InputEventDispatchType dispatch_type) override; |
| + void SendInputEventAck(int routing_id, |
| + blink::WebInputEvent::Type type, |
| + InputEventAckState ack_result, |
| + uint32_t touch_event_id) override; |
|
tdresser
2016/06/28 14:04:49
Add a comment stating what the value of touch_even
dtapuska
2016/06/28 17:30:21
Done.
|
| private: |
| ~InputEventFilter() override; |