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

Unified Diff: content/common/view_messages.h

Issue 8776030: Add IPCs to allow assistive technology to scroll the page (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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 112764)
+++ content/common/view_messages.h (working copy)
@@ -1100,6 +1100,20 @@
IPC_MESSAGE_ROUTED1(ViewMsg_AccessibilityDoDefaultAction,
int /* object id */)
+// Relay a request from assistive technology to change the scroll position
+// of a scrollable container (like the whole page, an iframe, etc.).
+IPC_MESSAGE_ROUTED3(ViewMsg_AccessibilityChangeScrollPosition,
+ int /* object id */,
+ int /* New x scroll position */,
+ int /* New y scroll position */)
+
+// Relay a request from assistive technology to set the cursor or
+// selection within an editable text element.
+IPC_MESSAGE_ROUTED3(ViewMsg_AccessibilitySetTextSelection,
+ int /* object id */,
+ int /* New start offset */,
+ int /* New end offset */)
+
// Tells the render view that a ViewHostMsg_AccessibilityNotifications
// message was processed and it can send addition notifications.
IPC_MESSAGE_ROUTED0(ViewMsg_AccessibilityNotifications_ACK)
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_win.cc ('k') | content/renderer/renderer_accessibility.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698