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

Unified Diff: webkit/glue/webview_delegate.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: webkit/glue/webview_delegate.h
===================================================================
--- webkit/glue/webview_delegate.h (revision 16095)
+++ webkit/glue/webview_delegate.h (working copy)
@@ -37,6 +37,10 @@
class WebMediaPlayerDelegate;
}
+namespace WebCore {
+class AccessibilityObject;
+}
+
namespace WebKit {
class WebDragData;
class WebWorker;
@@ -169,6 +173,13 @@
return true;
}
+ // Called by ChromeClientImpl::focus() if accessibility on the renderer side
+ // is enabled, and a focus change has occurred. Will retrieve the id of the
+ // input AccessibilityObject and send it through IPC for handling on the
+ // browser side.
+ virtual void FocusAccessibilityObject(WebCore::AccessibilityObject* acc_obj) {
+ }
+
// FrameLoaderClient -------------------------------------------------------
// Notifies the delegate that a load has begun.

Powered by Google App Engine
This is Rietveld 408576698