| 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 #ifndef CONTENT_COMMON_ACCESSIBILITY_MESSAGES_H_ |
| 6 #define CONTENT_COMMON_ACCESSIBILITY_MESSAGES_H_ |
| 7 |
| 5 // IPC messages for accessibility. | 8 // IPC messages for accessibility. |
| 6 // Multiply-included message file, hence no include guard. | 9 // Multiply-included message file, hence no include guard. |
| 7 | 10 |
| 8 #include "content/common/ax_content_node_data.h" | 11 #include "content/common/ax_content_node_data.h" |
| 9 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
| 10 #include "content/common/view_message_enums.h" | 13 #include "content/common/view_message_enums.h" |
| 11 #include "ipc/ipc_message_macros.h" | 14 #include "ipc/ipc_message_macros.h" |
| 12 #include "ipc/ipc_message_utils.h" | 15 #include "ipc/ipc_message_utils.h" |
| 13 #include "ipc/ipc_param_traits.h" | 16 #include "ipc/ipc_param_traits.h" |
| 14 #include "ipc/param_traits_macros.h" | 17 #include "ipc/param_traits_macros.h" |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 gfx::Point /* location tested */, | 215 gfx::Point /* location tested */, |
| 213 int /* node id of result */, | 216 int /* node id of result */, |
| 214 ui::AXEvent /* event to fire */) | 217 ui::AXEvent /* event to fire */) |
| 215 | 218 |
| 216 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was | 219 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was |
| 217 // 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 |
| 218 // a standalone snapshot of the accessibility tree. | 221 // a standalone snapshot of the accessibility tree. |
| 219 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse, | 222 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse, |
| 220 int /* callback_id */, | 223 int /* callback_id */, |
| 221 content::AXContentTreeUpdate) | 224 content::AXContentTreeUpdate) |
| 225 |
| 226 #endif // CONTENT_COMMON_ACCESSIBILITY_MESSAGES_H_ |
| OLD | NEW |