| 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" |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 | 234 |
| 235 IPC_MESSAGE_ROUTED0(InputMsg_SyntheticGestureCompleted) | 235 IPC_MESSAGE_ROUTED0(InputMsg_SyntheticGestureCompleted) |
| 236 | 236 |
| 237 // ----------------------------------------------------------------------------- | 237 // ----------------------------------------------------------------------------- |
| 238 // Messages sent from the renderer to the browser. | 238 // Messages sent from the renderer to the browser. |
| 239 | 239 |
| 240 // Acknowledges receipt of a InputMsg_HandleInputEvent message. | 240 // Acknowledges receipt of a InputMsg_HandleInputEvent message. |
| 241 IPC_MESSAGE_ROUTED1(InputHostMsg_HandleInputEvent_ACK, | 241 IPC_MESSAGE_ROUTED1(InputHostMsg_HandleInputEvent_ACK, |
| 242 InputHostMsg_HandleInputEvent_ACK_Params) | 242 InputHostMsg_HandleInputEvent_ACK_Params) |
| 243 | 243 |
| 244 IPC_MESSAGE_ROUTED0(InputHostMsg_HandleUncancelableTouchMoveEvent_ACK) |
| 245 |
| 244 IPC_MESSAGE_ROUTED1(InputHostMsg_QueueSyntheticGesture, | 246 IPC_MESSAGE_ROUTED1(InputHostMsg_QueueSyntheticGesture, |
| 245 content::SyntheticGesturePacket) | 247 content::SyntheticGesturePacket) |
| 246 | 248 |
| 247 // Notifies the allowed touch actions for a new touch point. | 249 // Notifies the allowed touch actions for a new touch point. |
| 248 IPC_MESSAGE_ROUTED1(InputHostMsg_SetTouchAction, | 250 IPC_MESSAGE_ROUTED1(InputHostMsg_SetTouchAction, |
| 249 content::TouchAction /* touch_action */) | 251 content::TouchAction /* touch_action */) |
| 250 | 252 |
| 251 // Sent by the compositor when input scroll events are dropped due to bounds | 253 // Sent by the compositor when input scroll events are dropped due to bounds |
| 252 // restrictions on the root scroll offset. | 254 // restrictions on the root scroll offset. |
| 253 IPC_MESSAGE_ROUTED1(InputHostMsg_DidOverscroll, | 255 IPC_MESSAGE_ROUTED1(InputHostMsg_DidOverscroll, |
| (...skipping 17 matching lines...) Expand all Loading... |
| 271 // This IPC message sends the character bounds after every composition change | 273 // This IPC message sends the character bounds after every composition change |
| 272 // to always have correct bound info. | 274 // to always have correct bound info. |
| 273 IPC_MESSAGE_ROUTED2(InputHostMsg_ImeCompositionRangeChanged, | 275 IPC_MESSAGE_ROUTED2(InputHostMsg_ImeCompositionRangeChanged, |
| 274 gfx::Range /* composition range */, | 276 gfx::Range /* composition range */, |
| 275 std::vector<gfx::Rect> /* character bounds */) | 277 std::vector<gfx::Rect> /* character bounds */) |
| 276 | 278 |
| 277 // Adding a new message? Stick to the sort order above: first platform | 279 // Adding a new message? Stick to the sort order above: first platform |
| 278 // independent InputMsg, then ifdefs for platform specific InputMsg, then | 280 // independent InputMsg, then ifdefs for platform specific InputMsg, then |
| 279 // platform independent InputHostMsg, then ifdefs for platform specific | 281 // platform independent InputHostMsg, then ifdefs for platform specific |
| 280 // InputHostMsg. | 282 // InputHostMsg. |
| OLD | NEW |