| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 IPC_STRUCT_TRAITS_MEMBER(focused_tree_id) | 47 IPC_STRUCT_TRAITS_MEMBER(focused_tree_id) |
| 48 IPC_STRUCT_TRAITS_MEMBER(url) | 48 IPC_STRUCT_TRAITS_MEMBER(url) |
| 49 IPC_STRUCT_TRAITS_MEMBER(title) | 49 IPC_STRUCT_TRAITS_MEMBER(title) |
| 50 IPC_STRUCT_TRAITS_MEMBER(mimetype) | 50 IPC_STRUCT_TRAITS_MEMBER(mimetype) |
| 51 IPC_STRUCT_TRAITS_MEMBER(doctype) | 51 IPC_STRUCT_TRAITS_MEMBER(doctype) |
| 52 IPC_STRUCT_TRAITS_MEMBER(loaded) | 52 IPC_STRUCT_TRAITS_MEMBER(loaded) |
| 53 IPC_STRUCT_TRAITS_MEMBER(loading_progress) | 53 IPC_STRUCT_TRAITS_MEMBER(loading_progress) |
| 54 IPC_STRUCT_TRAITS_MEMBER(focus_id) | 54 IPC_STRUCT_TRAITS_MEMBER(focus_id) |
| 55 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_object_id) | 55 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_object_id) |
| 56 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_offset) | 56 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_offset) |
| 57 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_affinity) |
| 57 IPC_STRUCT_TRAITS_MEMBER(sel_focus_object_id) | 58 IPC_STRUCT_TRAITS_MEMBER(sel_focus_object_id) |
| 58 IPC_STRUCT_TRAITS_MEMBER(sel_focus_offset) | 59 IPC_STRUCT_TRAITS_MEMBER(sel_focus_offset) |
| 60 IPC_STRUCT_TRAITS_MEMBER(sel_focus_affinity) |
| 59 IPC_STRUCT_TRAITS_MEMBER(routing_id) | 61 IPC_STRUCT_TRAITS_MEMBER(routing_id) |
| 60 IPC_STRUCT_TRAITS_MEMBER(parent_routing_id) | 62 IPC_STRUCT_TRAITS_MEMBER(parent_routing_id) |
| 61 IPC_STRUCT_TRAITS_END() | 63 IPC_STRUCT_TRAITS_END() |
| 62 | 64 |
| 63 IPC_STRUCT_TRAITS_BEGIN(content::AXContentTreeUpdate) | 65 IPC_STRUCT_TRAITS_BEGIN(content::AXContentTreeUpdate) |
| 64 IPC_STRUCT_TRAITS_MEMBER(has_tree_data) | 66 IPC_STRUCT_TRAITS_MEMBER(has_tree_data) |
| 65 IPC_STRUCT_TRAITS_MEMBER(tree_data) | 67 IPC_STRUCT_TRAITS_MEMBER(tree_data) |
| 66 IPC_STRUCT_TRAITS_MEMBER(node_id_to_clear) | 68 IPC_STRUCT_TRAITS_MEMBER(node_id_to_clear) |
| 67 IPC_STRUCT_TRAITS_MEMBER(root_id) | 69 IPC_STRUCT_TRAITS_MEMBER(root_id) |
| 68 IPC_STRUCT_TRAITS_MEMBER(nodes) | 70 IPC_STRUCT_TRAITS_MEMBER(nodes) |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_ChildFrameHitTestResult, | 230 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_ChildFrameHitTestResult, |
| 229 gfx::Point /* location tested */, | 231 gfx::Point /* location tested */, |
| 230 int /* node id of result */) | 232 int /* node id of result */) |
| 231 | 233 |
| 232 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was | 234 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was |
| 233 // passed to the request will be returned in |callback_id|, along with | 235 // passed to the request will be returned in |callback_id|, along with |
| 234 // a standalone snapshot of the accessibility tree. | 236 // a standalone snapshot of the accessibility tree. |
| 235 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse, | 237 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse, |
| 236 int /* callback_id */, | 238 int /* callback_id */, |
| 237 content::AXContentTreeUpdate) | 239 content::AXContentTreeUpdate) |
| OLD | NEW |