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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 int /* request_id */, | 148 int /* request_id */, |
149 float /* x */, | 149 float /* x */, |
150 float /* y */) | 150 float /* y */) |
151 #endif | 151 #endif |
152 | 152 |
153 // ----------------------------------------------------------------------------- | 153 // ----------------------------------------------------------------------------- |
154 // Messages sent from the renderer to the browser. | 154 // Messages sent from the renderer to the browser. |
155 | 155 |
156 // Acknowledges receipt of a InputMsg_HandleInputEvent message. | 156 // Acknowledges receipt of a InputMsg_HandleInputEvent message. |
157 IPC_MESSAGE_ROUTED3(InputHostMsg_HandleInputEvent_ACK, | 157 IPC_MESSAGE_ROUTED3(InputHostMsg_HandleInputEvent_ACK, |
158 WebKit::WebInputEvent::Type, | 158 blink::WebInputEvent::Type, |
159 content::InputEventAckState /* ack_result */, | 159 content::InputEventAckState /* ack_result */, |
160 ui::LatencyInfo /* latency_info */) | 160 ui::LatencyInfo /* latency_info */) |
161 | 161 |
162 | 162 |
163 // Adding a new message? Stick to the sort order above: first platform | 163 // Adding a new message? Stick to the sort order above: first platform |
164 // independent InputMsg, then ifdefs for platform specific InputMsg, then | 164 // independent InputMsg, then ifdefs for platform specific InputMsg, then |
165 // platform independent InputHostMsg, then ifdefs for platform specific | 165 // platform independent InputHostMsg, then ifdefs for platform specific |
166 // InputHostMsg. | 166 // InputHostMsg. |
OLD | NEW |