OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 accessibility. | 5 // IPC messages for accessibility. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include "content/common/ax_content_node_data.h" | 8 #include "content/common/ax_content_node_data.h" |
9 #include "content/common/content_export.h" | 9 #include "content/common/content_export.h" |
10 #include "content/common/view_message_enums.h" | 10 #include "content/common/view_message_enums.h" |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 std::vector<AccessibilityHostMsg_LocationChangeParams>) | 219 std::vector<AccessibilityHostMsg_LocationChangeParams>) |
220 | 220 |
221 // Sent to update the browser of Find In Page results. | 221 // Sent to update the browser of Find In Page results. |
222 IPC_MESSAGE_ROUTED1( | 222 IPC_MESSAGE_ROUTED1( |
223 AccessibilityHostMsg_FindInPageResult, | 223 AccessibilityHostMsg_FindInPageResult, |
224 AccessibilityHostMsg_FindInPageResultParams) | 224 AccessibilityHostMsg_FindInPageResultParams) |
225 | 225 |
226 // Sent in response to AccessibilityMsg_HitTest. | 226 // Sent in response to AccessibilityMsg_HitTest. |
227 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_ChildFrameHitTestResult, | 227 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_ChildFrameHitTestResult, |
228 gfx::Point /* location tested */, | 228 gfx::Point /* location tested */, |
229 int /* node id of result */); | 229 int /* node id of result */) |
230 | 230 |
231 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was | 231 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was |
232 // passed to the request will be returned in |callback_id|, along with | 232 // passed to the request will be returned in |callback_id|, along with |
233 // a standalone snapshot of the accessibility tree. | 233 // a standalone snapshot of the accessibility tree. |
234 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse, | 234 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse, |
235 int /* callback_id */, | 235 int /* callback_id */, |
236 content::AXContentTreeUpdate) | 236 content::AXContentTreeUpdate) |
OLD | NEW |