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

Side by Side Diff: chrome/common/render_messages_internal.h

Issue 3250014: Update browser accessibility tree on a renderer accessibility object state ch... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Fix lint errors Created 10 years, 3 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 // This header is meant to be included in multiple passes, hence no traditional 5 // This header is meant to be included in multiple passes, hence no traditional
6 // header guard. 6 // header guard.
7 // See ipc_message_macros.h for explanation of the macros and passes. 7 // See ipc_message_macros.h for explanation of the macros and passes.
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 2203 matching lines...) Expand 10 before | Expand all | Expand 10 after
2214 IPC_MESSAGE_CONTROL1(ViewHostMsg_ExtensionCloseChannel, 2214 IPC_MESSAGE_CONTROL1(ViewHostMsg_ExtensionCloseChannel,
2215 int /* port_id */) 2215 int /* port_id */)
2216 2216
2217 // Sent as a result of a focus change in the renderer (if accessibility is 2217 // Sent as a result of a focus change in the renderer (if accessibility is
2218 // enabled), to notify the browser side that its accessibility focus needs to 2218 // enabled), to notify the browser side that its accessibility focus needs to
2219 // change as well. Takes the id of the accessibility object that now has 2219 // change as well. Takes the id of the accessibility object that now has
2220 // focus. 2220 // focus.
2221 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityFocusChange, 2221 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityFocusChange,
2222 int /* accessibility object id */) 2222 int /* accessibility object id */)
2223 2223
2224 // Sent as a result of a state change in the renderer (if accessibility is 2224 // Sent by the render when the state of an accessibility node changes.
dmazzoni 2010/09/01 15:10:52 render -> renderer?
Chris Guillory 2010/09/01 15:35:27 Done.
2225 // enabled), to notify the browser side. Takes the id of the accessibility
2226 // object that had a state change
2227 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityObjectStateChange, 2225 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityObjectStateChange,
2228 int /* accessibility object id */) 2226 webkit_glue::WebAccessibility)
2229 2227
2230 // Sent by the renderer as a result of a accessibility node children change. 2228 // Sent by the renderer as a result of an accessibility node children change.
2231 // The browser responds with a ViewMsg_AccessibilityObjectChildrenChange_ACK. 2229 // The browser responds with a ViewMsg_AccessibilityObjectChildrenChange_ACK.
2232 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityObjectChildrenChange, 2230 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityObjectChildrenChange,
2233 std::vector<webkit_glue::WebAccessibility>) 2231 std::vector<webkit_glue::WebAccessibility>)
2234 2232
2235 // Send the tree of accessibility data to the browser, where it's cached 2233 // Send the tree of accessibility data to the browser, where it's cached
2236 // in order to respond to OS accessibility queries immediately. 2234 // in order to respond to OS accessibility queries immediately.
2237 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, 2235 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree,
2238 webkit_glue::WebAccessibility) 2236 webkit_glue::WebAccessibility)
2239 2237
2240 // Message sent from the renderer to the browser to request that the browser 2238 // Message sent from the renderer to the browser to request that the browser
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after
2779 // Registers a blob URL referring to the blob data identified by the specified 2777 // Registers a blob URL referring to the blob data identified by the specified
2780 // source URL. 2778 // source URL.
2781 IPC_MESSAGE_CONTROL2(ViewHostMsg_RegisterBlobUrlFrom, 2779 IPC_MESSAGE_CONTROL2(ViewHostMsg_RegisterBlobUrlFrom,
2782 GURL /* url */, 2780 GURL /* url */,
2783 GURL /* src_url */) 2781 GURL /* src_url */)
2784 2782
2785 // Unregister a blob URL. 2783 // Unregister a blob URL.
2786 IPC_MESSAGE_CONTROL1(ViewHostMsg_UnregisterBlobUrl, GURL /* url */) 2784 IPC_MESSAGE_CONTROL1(ViewHostMsg_UnregisterBlobUrl, GURL /* url */)
2787 2785
2788 IPC_END_MESSAGES(ViewHost) 2786 IPC_END_MESSAGES(ViewHost)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698