| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 content::InputEventAckState /* ack_result */, | 182 content::InputEventAckState /* ack_result */, |
| 183 ui::LatencyInfo /* latency_info */) | 183 ui::LatencyInfo /* latency_info */) |
| 184 | 184 |
| 185 IPC_MESSAGE_ROUTED1(InputHostMsg_QueueSyntheticGesture, | 185 IPC_MESSAGE_ROUTED1(InputHostMsg_QueueSyntheticGesture, |
| 186 content::SyntheticGesturePacket) | 186 content::SyntheticGesturePacket) |
| 187 | 187 |
| 188 // Notifies the allowed touch actions for a new touch point. | 188 // Notifies the allowed touch actions for a new touch point. |
| 189 IPC_MESSAGE_ROUTED1(InputHostMsg_SetTouchAction, | 189 IPC_MESSAGE_ROUTED1(InputHostMsg_SetTouchAction, |
| 190 content::TouchAction /* touch_action */) | 190 content::TouchAction /* touch_action */) |
| 191 | 191 |
| 192 IPC_MESSAGE_ROUTED0(InputHostMsg_DidFinishTopControlsGesture) |
| 193 |
| 192 // Adding a new message? Stick to the sort order above: first platform | 194 // Adding a new message? Stick to the sort order above: first platform |
| 193 // independent InputMsg, then ifdefs for platform specific InputMsg, then | 195 // independent InputMsg, then ifdefs for platform specific InputMsg, then |
| 194 // platform independent InputHostMsg, then ifdefs for platform specific | 196 // platform independent InputHostMsg, then ifdefs for platform specific |
| 195 // InputHostMsg. | 197 // InputHostMsg. |
| OLD | NEW |