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 "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "content/common/accessibility_node_data.h" | 9 #include "content/common/accessibility_node_data.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
11 #include "content/common/view_message_enums.h" | 11 #include "content/common/view_message_enums.h" |
12 #include "content/public/common/common_param_traits.h" | 12 #include "content/public/common/common_param_traits.h" |
13 #include "ipc/ipc_message_macros.h" | 13 #include "ipc/ipc_message_macros.h" |
14 #include "ipc/ipc_message_utils.h" | 14 #include "ipc/ipc_message_utils.h" |
15 #include "ipc/ipc_param_traits.h" | 15 #include "ipc/ipc_param_traits.h" |
16 #include "ipc/param_traits_macros.h" | 16 #include "ipc/param_traits_macros.h" |
17 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebPoint.h" | 17 #include "third_party/WebKit/Source/Platform/chromium/public/WebPoint.h" |
18 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebRect.h" | 18 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h" |
19 | 19 |
20 #undef IPC_MESSAGE_EXPORT | 20 #undef IPC_MESSAGE_EXPORT |
21 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 21 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
22 | 22 |
23 #define IPC_MESSAGE_START AccessibilityMsgStart | 23 #define IPC_MESSAGE_START AccessibilityMsgStart |
24 | 24 |
25 #ifndef CONTENT_COMMON_ACCESSIBILITY_MESSAGES_H_ | 25 #ifndef CONTENT_COMMON_ACCESSIBILITY_MESSAGES_H_ |
26 #define CONTENT_COMMON_ACCESSIBILITY_MESSAGES_H_ | 26 #define CONTENT_COMMON_ACCESSIBILITY_MESSAGES_H_ |
27 | 27 |
28 enum AccessibilityNotification { | 28 enum AccessibilityNotification { |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 // message was processed and it can send addition notifications. | 176 // message was processed and it can send addition notifications. |
177 IPC_MESSAGE_ROUTED0(AccessibilityMsg_Notifications_ACK) | 177 IPC_MESSAGE_ROUTED0(AccessibilityMsg_Notifications_ACK) |
178 | 178 |
179 // Messages sent from the renderer to the browser. | 179 // Messages sent from the renderer to the browser. |
180 | 180 |
181 // Sent to notify the browser about renderer accessibility notifications. | 181 // Sent to notify the browser about renderer accessibility notifications. |
182 // The browser responds with a AccessibilityMsg_Notifications_ACK. | 182 // The browser responds with a AccessibilityMsg_Notifications_ACK. |
183 IPC_MESSAGE_ROUTED1( | 183 IPC_MESSAGE_ROUTED1( |
184 AccessibilityHostMsg_Notifications, | 184 AccessibilityHostMsg_Notifications, |
185 std::vector<AccessibilityHostMsg_NotificationParams>) | 185 std::vector<AccessibilityHostMsg_NotificationParams>) |
OLD | NEW |