| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 IPC_STRUCT_TRAITS_MEMBER(transform) | 51 IPC_STRUCT_TRAITS_MEMBER(transform) |
| 52 IPC_STRUCT_TRAITS_MEMBER(string_attributes) | 52 IPC_STRUCT_TRAITS_MEMBER(string_attributes) |
| 53 IPC_STRUCT_TRAITS_MEMBER(int_attributes) | 53 IPC_STRUCT_TRAITS_MEMBER(int_attributes) |
| 54 IPC_STRUCT_TRAITS_MEMBER(float_attributes) | 54 IPC_STRUCT_TRAITS_MEMBER(float_attributes) |
| 55 IPC_STRUCT_TRAITS_MEMBER(bool_attributes) | 55 IPC_STRUCT_TRAITS_MEMBER(bool_attributes) |
| 56 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes) | 56 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes) |
| 57 IPC_STRUCT_TRAITS_MEMBER(html_attributes) | 57 IPC_STRUCT_TRAITS_MEMBER(html_attributes) |
| 58 IPC_STRUCT_TRAITS_MEMBER(child_ids) | 58 IPC_STRUCT_TRAITS_MEMBER(child_ids) |
| 59 IPC_STRUCT_TRAITS_MEMBER(content_int_attributes) | 59 IPC_STRUCT_TRAITS_MEMBER(content_int_attributes) |
| 60 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) | 60 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) |
| 61 IPC_STRUCT_TRAITS_MEMBER(is_fixed_positioned) |
| 61 IPC_STRUCT_TRAITS_END() | 62 IPC_STRUCT_TRAITS_END() |
| 62 | 63 |
| 63 IPC_STRUCT_TRAITS_BEGIN(content::AXContentTreeData) | 64 IPC_STRUCT_TRAITS_BEGIN(content::AXContentTreeData) |
| 64 IPC_STRUCT_TRAITS_MEMBER(tree_id) | 65 IPC_STRUCT_TRAITS_MEMBER(tree_id) |
| 65 IPC_STRUCT_TRAITS_MEMBER(parent_tree_id) | 66 IPC_STRUCT_TRAITS_MEMBER(parent_tree_id) |
| 66 IPC_STRUCT_TRAITS_MEMBER(focused_tree_id) | 67 IPC_STRUCT_TRAITS_MEMBER(focused_tree_id) |
| 67 IPC_STRUCT_TRAITS_MEMBER(url) | 68 IPC_STRUCT_TRAITS_MEMBER(url) |
| 68 IPC_STRUCT_TRAITS_MEMBER(title) | 69 IPC_STRUCT_TRAITS_MEMBER(title) |
| 69 IPC_STRUCT_TRAITS_MEMBER(mimetype) | 70 IPC_STRUCT_TRAITS_MEMBER(mimetype) |
| 70 IPC_STRUCT_TRAITS_MEMBER(doctype) | 71 IPC_STRUCT_TRAITS_MEMBER(doctype) |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 gfx::Point /* location tested */, | 213 gfx::Point /* location tested */, |
| 213 int /* node id of result */, | 214 int /* node id of result */, |
| 214 ui::AXEvent /* event to fire */) | 215 ui::AXEvent /* event to fire */) |
| 215 | 216 |
| 216 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was | 217 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was |
| 217 // passed to the request will be returned in |callback_id|, along with | 218 // passed to the request will be returned in |callback_id|, along with |
| 218 // a standalone snapshot of the accessibility tree. | 219 // a standalone snapshot of the accessibility tree. |
| 219 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse, | 220 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse, |
| 220 int /* callback_id */, | 221 int /* callback_id */, |
| 221 content::AXContentTreeUpdate) | 222 content::AXContentTreeUpdate) |
| OLD | NEW |