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

Unified 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, 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/render_messages_internal.h
===================================================================
--- chrome/common/render_messages_internal.h (revision 57984)
+++ chrome/common/render_messages_internal.h (working copy)
@@ -2221,13 +2221,11 @@
IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityFocusChange,
int /* accessibility object id */)
- // Sent as a result of a state change in the renderer (if accessibility is
- // enabled), to notify the browser side. Takes the id of the accessibility
- // object that had a state change
+ // 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.
IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityObjectStateChange,
- int /* accessibility object id */)
+ webkit_glue::WebAccessibility)
- // Sent by the renderer as a result of a accessibility node children change.
+ // Sent by the renderer as a result of an accessibility node children change.
// The browser responds with a ViewMsg_AccessibilityObjectChildrenChange_ACK.
IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityObjectChildrenChange,
std::vector<webkit_glue::WebAccessibility>)

Powered by Google App Engine
This is Rietveld 408576698