Chromium Code Reviews| Index: content/browser/renderer_host/input/input_router_impl.h |
| diff --git a/content/browser/renderer_host/input/input_router_impl.h b/content/browser/renderer_host/input/input_router_impl.h |
| index ab5058329547e51cd7a443674d937d5109671aee..58705d219d99e1b9a1a455a97723f83ae89ca260 100644 |
| --- a/content/browser/renderer_host/input/input_router_impl.h |
| +++ b/content/browser/renderer_host/input/input_router_impl.h |
| @@ -19,6 +19,7 @@ |
| #include "content/public/browser/native_web_keyboard_event.h" |
| struct InputHostMsg_HandleInputEvent_ACK_Params; |
| +struct InputHostMsg_HandleAsyncTouchEvent_ACK_Params; |
|
tdresser
2015/03/23 19:21:44
This should be HandleUncancelableEvent_ACK_Params,
lanwei
2015/03/24 18:46:38
Done.
|
| namespace IPC { |
| class Sender; |
| @@ -125,6 +126,8 @@ private: |
| // IPC message handlers |
| void OnInputEventAck(const InputHostMsg_HandleInputEvent_ACK_Params& ack); |
| + void OnAsyncTouchEventAck( |
| + const InputHostMsg_HandleAsyncTouchEvent_ACK_Params& ack); |
| void OnDidOverscroll(const DidOverscrollParams& params); |
| void OnMsgMoveCaretAck(); |
| void OnSelectMessageAck(); |
| @@ -170,6 +173,8 @@ private: |
| void ProcessTouchAck(InputEventAckState ack_result, |
| const ui::LatencyInfo& latency); |
| + void ProcessAsyncTouchAck(); |
| + |
| // Called when a touch timeout-affecting bit has changed, in turn toggling the |
| // touch ack timeout feature of the |touch_event_queue_| as appropriate. Input |
| // to that determination includes current view properties and the allowed |