Chromium Code Reviews

Unified Diff: chrome/browser/renderer_host/render_widget_host.h

Issue 2121004: Windows accessibility improvements: 1. All WebKit roles are now passed to the... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/browser/renderer_host/render_widget_host.h
===================================================================
--- chrome/browser/renderer_host/render_widget_host.h (revision 47913)
+++ chrome/browser/renderer_host/render_widget_host.h (working copy)
@@ -364,6 +364,17 @@
// Makes an IPC call to tell webkit to advance to the next misspelling.
void AdvanceToNextMisspelling();
+ // Requests a snapshot of an accessible DOM tree from the renderer.
+ void RequestAccessibilityTree();
+
+ // Relays a request from assistive technology to set focus to the
+ // node with this accessibility object id.
+ void SetAccessibilityFocus(int acc_obj_id);
+
+ // Relays a request from assistive technology to perform the default action
+ // on a node with this accessibility object id.
+ void AccessibilityDoDefaultAction(int acc_obj_id);
+
// Sets the active state (i.e., control tints).
virtual void SetActive(bool active);
« no previous file with comments | « chrome/browser/renderer_host/render_view_host.cc ('k') | chrome/browser/renderer_host/render_widget_host.cc » ('j') | no next file with comments »

Powered by Google App Engine