summaryrefslogtreecommitdiffstats
path: root/webkit/glue/webaccessibilitymanager.h
diff options
context:
space:
mode:
authorklink@chromium.org <klink@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-20 00:53:06 +0000
committerklink@chromium.org <klink@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-20 00:53:06 +0000
commite846d0dba2bf9506a929c9e16294997e37014039 (patch)
tree5ac70d2216fd450b3d4f164a26f752504c8cb220 /webkit/glue/webaccessibilitymanager.h
parentfabd89f6aa700cb0e59b04e92ce54e729cbd0c66 (diff)
downloadchromium_src-e846d0dba2bf9506a929c9e16294997e37014039.zip
chromium_src-e846d0dba2bf9506a929c9e16294997e37014039.tar.gz
chromium_src-e846d0dba2bf9506a929c9e16294997e37014039.tar.bz2
Adds propagation and handling of render-side focus events, for the benefit of assistive technologies (accessibility). Also cleans up the handling of WM_GETOBJECT in RenderWidgetHostViewWin and WidgetWin, as well as in BrowserAccessibilityManager.
Review URL: http://codereview.chromium.org/115374 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16449 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webaccessibilitymanager.h')
-rw-r--r--webkit/glue/webaccessibilitymanager.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/webkit/glue/webaccessibilitymanager.h b/webkit/glue/webaccessibilitymanager.h
index cebe94c..c94fbb9 100644
--- a/webkit/glue/webaccessibilitymanager.h
+++ b/webkit/glue/webaccessibilitymanager.h
@@ -7,6 +7,10 @@
#include "webkit/glue/webaccessibility.h"
+namespace WebCore {
+class AccessibilityObject;
+}
+
class WebView;
////////////////////////////////////////////////////////////////////////////////
@@ -24,6 +28,7 @@ class WebAccessibilityManager {
WebAccessibilityManager() {}
virtual ~WebAccessibilityManager() {}
+ // Creates a new instance of WebAccessibilityManager.
static WebAccessibilityManager* Create();
// Retrieves the accessibility information as requested in in_params, by
@@ -39,13 +44,17 @@ class WebAccessibilityManager {
// false otherwise.
virtual bool ClearAccObjMap(int acc_obj_id, bool clear_all) = 0;
+ // Retrieves the id of the input AccessibilityObject, due to a focus event.
+ // Returns an id greater than or equal to 0 if successful, -1 otherwise.
+ virtual int FocusAccObj(WebCore::AccessibilityObject* acc_obj) = 0;
+
+ private:
// Retrieves the RenderObject associated with this WebView, and uses it to
// initialize the root of the GlueAccessibilityObject tree with the
// associated accessibility information. Returns true if successful, false
// otherwise.
virtual bool InitAccObjRoot(WebView* view) = 0;
- private:
DISALLOW_COPY_AND_ASSIGN(WebAccessibilityManager);
};