OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // IPC messages for input events and other messages that require processing in | 5 // IPC messages for input events and other messages that require processing in |
6 // order relative to input events. | 6 // order relative to input events. |
7 // Multiply-included message file, hence no include guard. | 7 // Multiply-included message file, hence no include guard. |
8 | 8 |
9 #include "base/strings/string16.h" | 9 #include "base/strings/string16.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
11 #include "content/common/content_param_traits.h" | 11 #include "content/common/content_param_traits.h" |
12 #include "content/common/edit_command.h" | 12 #include "content/common/edit_command.h" |
13 #include "content/common/input/input_event.h" | 13 #include "content/common/input/input_event.h" |
14 #include "content/common/input/input_param_traits.h" | 14 #include "content/common/input/input_param_traits.h" |
15 #include "content/common/input/synthetic_gesture_packet.h" | |
16 #include "content/common/input/synthetic_gesture_params.h" | 15 #include "content/common/input/synthetic_gesture_params.h" |
17 #include "content/common/input/synthetic_pinch_gesture_params.h" | 16 #include "content/common/input/synthetic_pinch_gesture_params.h" |
18 #include "content/common/input/synthetic_smooth_scroll_gesture_params.h" | 17 #include "content/common/input/synthetic_smooth_scroll_gesture_params.h" |
19 #include "content/port/common/input_event_ack_state.h" | 18 #include "content/port/common/input_event_ack_state.h" |
20 #include "content/public/common/common_param_traits.h" | 19 #include "content/public/common/common_param_traits.h" |
21 #include "ipc/ipc_message_macros.h" | 20 #include "ipc/ipc_message_macros.h" |
22 #include "third_party/WebKit/public/web/WebInputEvent.h" | 21 #include "third_party/WebKit/public/web/WebInputEvent.h" |
23 #include "ui/events/latency_info.h" | 22 #include "ui/events/latency_info.h" |
24 #include "ui/gfx/point.h" | 23 #include "ui/gfx/point.h" |
25 #include "ui/gfx/rect.h" | 24 #include "ui/gfx/rect.h" |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 | 152 |
154 #if defined(OS_ANDROID) | 153 #if defined(OS_ANDROID) |
155 // Sent when the user clicks on the find result bar to activate a find result. | 154 // Sent when the user clicks on the find result bar to activate a find result. |
156 // The point (x,y) is in fractions of the content document's width and height. | 155 // The point (x,y) is in fractions of the content document's width and height. |
157 IPC_MESSAGE_ROUTED3(InputMsg_ActivateNearestFindResult, | 156 IPC_MESSAGE_ROUTED3(InputMsg_ActivateNearestFindResult, |
158 int /* request_id */, | 157 int /* request_id */, |
159 float /* x */, | 158 float /* x */, |
160 float /* y */) | 159 float /* y */) |
161 #endif | 160 #endif |
162 | 161 |
163 IPC_MESSAGE_ROUTED0(InputMsg_SyntheticGestureCompleted); | |
164 | |
165 // ----------------------------------------------------------------------------- | 162 // ----------------------------------------------------------------------------- |
166 // Messages sent from the renderer to the browser. | 163 // Messages sent from the renderer to the browser. |
167 | 164 |
168 // Acknowledges receipt of a InputMsg_HandleInputEvent message. | 165 // Acknowledges receipt of a InputMsg_HandleInputEvent message. |
169 IPC_MESSAGE_ROUTED3(InputHostMsg_HandleInputEvent_ACK, | 166 IPC_MESSAGE_ROUTED3(InputHostMsg_HandleInputEvent_ACK, |
170 blink::WebInputEvent::Type, | 167 blink::WebInputEvent::Type, |
171 content::InputEventAckState /* ack_result */, | 168 content::InputEventAckState /* ack_result */, |
172 ui::LatencyInfo /* latency_info */) | 169 ui::LatencyInfo /* latency_info */) |
173 | 170 |
174 IPC_MESSAGE_ROUTED1(InputHostMsg_QueueSyntheticGesture, | |
175 content::SyntheticGesturePacket) | |
176 | |
177 | 171 |
178 // Adding a new message? Stick to the sort order above: first platform | 172 // Adding a new message? Stick to the sort order above: first platform |
179 // independent InputMsg, then ifdefs for platform specific InputMsg, then | 173 // independent InputMsg, then ifdefs for platform specific InputMsg, then |
180 // platform independent InputHostMsg, then ifdefs for platform specific | 174 // platform independent InputHostMsg, then ifdefs for platform specific |
181 // InputHostMsg. | 175 // InputHostMsg. |
OLD | NEW |