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

Unified Diff: chrome/common/render_messages_internal.h

Issue 115374: Adds propagation and handling of render-side focus events, for the benefit of... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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 16095)
+++ chrome/common/render_messages_internal.h (working copy)
@@ -406,7 +406,7 @@
// id to clear a specific hashmap entry, and a bool; true clears all, false
// does not.
IPC_MESSAGE_ROUTED2(ViewMsg_ClearAccessibilityInfo,
- int /* iaccessible_id */,
+ int /* accessibility object id */,
bool /* clear_all */)
// Get all savable resource links from current webpage, include main
@@ -1372,4 +1372,11 @@
IPC_MESSAGE_ROUTED1(ViewHostMsg_ShowPopup,
ViewHostMsg_ShowPopup_Params)
+ // Sent as a result of a focus change in the renderer (if accessibility is
+ // enabled), to notify the browser side that its accessibility focus needs to
+ // change as well. Takes the id of the accessibility object that now has
+ // focus.
+ IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityFocusChange,
+ int /* accessibility object id */)
+
IPC_END_MESSAGES(ViewHost)

Powered by Google App Engine
This is Rietveld 408576698