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

Unified Diff: chrome/common/render_messages_internal.h

Issue 4057: Adds MSAA/IAccessible exposure of web content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 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: chrome/common/render_messages_internal.h
===================================================================
--- chrome/common/render_messages_internal.h (revision 2530)
+++ chrome/common/render_messages_internal.h (working copy)
@@ -372,6 +372,20 @@
int /* back_list_count */,
int /* forward_list_count */)
+ // Retreive information from the MSAA DOM subtree, for accessibility purposes.
+ IPC_SYNC_MESSAGE_ROUTED1_1(ViewMsg_GetAccessibilityInfo,
+ ViewMsg_Accessibility_In_Params
+ /* input parameters */,
+ ViewHostMsg_Accessibility_Out_Params
+ /* output parameters */)
+
+ // Requests the renderer to clear cashed accessibility information. Takes an
+ // id to clear a specific hashmap entry, and a bool; true clears all, false
+ // does not.
+ IPC_MESSAGE_ROUTED2(ViewMsg_ClearAccessibilityInfo,
+ int /* iaccessible_id */,
+ bool /* clear_all */)
+
// Get all savable resource links from current webpage, include main
// frame and sub-frame.
IPC_MESSAGE_ROUTED1(ViewMsg_GetAllSavableResourceLinksForCurrentPage,

Powered by Google App Engine
This is Rietveld 408576698