Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(173)

Side by Side Diff: content/common/accessibility_messages.h

Issue 11787003: Update some #includes in content/common/ for new Platform directory (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Several of these directories have been handled in other bugs, so this latest patchset are the ones … Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | content/common/child_process_sandbox_support_impl_linux.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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>)
OLDNEW
« no previous file with comments | « no previous file | content/common/child_process_sandbox_support_impl_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698