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

Unified Diff: content/common/view_messages.h

Issue 7966013: Rewrite renderer accessibility to not use WebAccessibilityCache. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 side-by-side diff with in-line comments
Download patch
Index: content/common/view_messages.h
===================================================================
--- content/common/view_messages.h (revision 102682)
+++ content/common/view_messages.h (working copy)
@@ -461,8 +461,15 @@
// Type of notification.
IPC_STRUCT_MEMBER(ViewHostMsg_AccEvent::Value, notification_type)
+ // ID of the node that the notification applies to.
+ IPC_STRUCT_MEMBER(int, id)
+
// The accessibility node tree.
- IPC_STRUCT_MEMBER(webkit_glue::WebAccessibility, acc_obj)
+ IPC_STRUCT_MEMBER(webkit_glue::WebAccessibility, acc_tree)
+
+ // Whether children are included in this tree, otherwise it's just an
+ // update to this one node and existing children are left in place.
+ IPC_STRUCT_MEMBER(bool, includes_children)
IPC_STRUCT_END()

Powered by Google App Engine
This is Rietveld 408576698