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 24 matching lines...) Expand all Loading... |
35 IPC_STRUCT_TRAITS_MEMBER(bool_attributes) | 35 IPC_STRUCT_TRAITS_MEMBER(bool_attributes) |
36 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes) | 36 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes) |
37 IPC_STRUCT_TRAITS_MEMBER(html_attributes) | 37 IPC_STRUCT_TRAITS_MEMBER(html_attributes) |
38 IPC_STRUCT_TRAITS_MEMBER(child_ids) | 38 IPC_STRUCT_TRAITS_MEMBER(child_ids) |
39 IPC_STRUCT_TRAITS_MEMBER(content_int_attributes) | 39 IPC_STRUCT_TRAITS_MEMBER(content_int_attributes) |
40 IPC_STRUCT_TRAITS_END() | 40 IPC_STRUCT_TRAITS_END() |
41 | 41 |
42 IPC_STRUCT_TRAITS_BEGIN(content::AXContentTreeData) | 42 IPC_STRUCT_TRAITS_BEGIN(content::AXContentTreeData) |
43 IPC_STRUCT_TRAITS_MEMBER(tree_id) | 43 IPC_STRUCT_TRAITS_MEMBER(tree_id) |
44 IPC_STRUCT_TRAITS_MEMBER(parent_tree_id) | 44 IPC_STRUCT_TRAITS_MEMBER(parent_tree_id) |
| 45 IPC_STRUCT_TRAITS_MEMBER(focused_tree_id) |
45 IPC_STRUCT_TRAITS_MEMBER(url) | 46 IPC_STRUCT_TRAITS_MEMBER(url) |
46 IPC_STRUCT_TRAITS_MEMBER(title) | 47 IPC_STRUCT_TRAITS_MEMBER(title) |
47 IPC_STRUCT_TRAITS_MEMBER(mimetype) | 48 IPC_STRUCT_TRAITS_MEMBER(mimetype) |
48 IPC_STRUCT_TRAITS_MEMBER(doctype) | 49 IPC_STRUCT_TRAITS_MEMBER(doctype) |
49 IPC_STRUCT_TRAITS_MEMBER(loaded) | 50 IPC_STRUCT_TRAITS_MEMBER(loaded) |
50 IPC_STRUCT_TRAITS_MEMBER(loading_progress) | 51 IPC_STRUCT_TRAITS_MEMBER(loading_progress) |
51 IPC_STRUCT_TRAITS_MEMBER(focus_id) | 52 IPC_STRUCT_TRAITS_MEMBER(focus_id) |
52 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_object_id) | 53 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_object_id) |
53 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_offset) | 54 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_offset) |
54 IPC_STRUCT_TRAITS_MEMBER(sel_focus_object_id) | 55 IPC_STRUCT_TRAITS_MEMBER(sel_focus_object_id) |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 IPC_MESSAGE_ROUTED1( | 215 IPC_MESSAGE_ROUTED1( |
215 AccessibilityHostMsg_FindInPageResult, | 216 AccessibilityHostMsg_FindInPageResult, |
216 AccessibilityHostMsg_FindInPageResultParams) | 217 AccessibilityHostMsg_FindInPageResultParams) |
217 | 218 |
218 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was | 219 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was |
219 // passed to the request will be returned in |callback_id|, along with | 220 // passed to the request will be returned in |callback_id|, along with |
220 // a standalone snapshot of the accessibility tree. | 221 // a standalone snapshot of the accessibility tree. |
221 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse, | 222 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse, |
222 int /* callback_id */, | 223 int /* callback_id */, |
223 content::AXContentTreeUpdate) | 224 content::AXContentTreeUpdate) |
OLD | NEW |