| Index: content/browser/renderer_host/render_widget_host_impl.h
|
| diff --git a/content/browser/renderer_host/render_widget_host_impl.h b/content/browser/renderer_host/render_widget_host_impl.h
|
| index a20a5ff17acf78c5d3825ce096c00b0b360acd47..2711c080695167d1735d86f70c1901db054b7852 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.h
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.h
|
| @@ -183,6 +183,15 @@ class CONTENT_EXPORT RenderWidgetHostImpl : virtual public RenderWidgetHost,
|
|
|
| virtual SkBitmap::Config PreferredReadbackFormat() OVERRIDE;
|
|
|
| + virtual void AccessibilityDoDefaultAction(int object_id) OVERRIDE;
|
| + virtual void AccessibilitySetFocus(int object_id) OVERRIDE;
|
| + virtual void AccessibilityScrollToMakeVisible(
|
| + int acc_obj_id, gfx::Rect subfocus) OVERRIDE;
|
| + virtual void AccessibilityScrollToPoint(
|
| + int acc_obj_id, gfx::Point point) OVERRIDE;
|
| + virtual void AccessibilitySetTextSelection(
|
| + int acc_obj_id, int start_offset, int end_offset) OVERRIDE;
|
| +
|
| const NativeWebKeyboardEvent* GetLastKeyboardEvent() const;
|
|
|
| // Notification that the screen info has changed.
|
| @@ -414,30 +423,6 @@ class CONTENT_EXPORT RenderWidgetHostImpl : virtual public RenderWidgetHost,
|
| // BrowserStateAccessibilityImpl.
|
| void ResetAccessibilityMode();
|
|
|
| - // Relay a request from assistive technology to perform the default action
|
| - // on a given node.
|
| - void AccessibilityDoDefaultAction(int object_id);
|
| -
|
| - // Relay a request from assistive technology to set focus to a given node.
|
| - void AccessibilitySetFocus(int object_id);
|
| -
|
| - // Relay a request from assistive technology to make a given object
|
| - // visible by scrolling as many scrollable containers as necessary.
|
| - // In addition, if it's not possible to make the entire object visible,
|
| - // scroll so that the |subfocus| rect is visible at least. The subfocus
|
| - // rect is in local coordinates of the object itself.
|
| - void AccessibilityScrollToMakeVisible(
|
| - int acc_obj_id, gfx::Rect subfocus);
|
| -
|
| - // Relay a request from assistive technology to move a given object
|
| - // to a specific location, in the WebContents area coordinate space, i.e.
|
| - // (0, 0) is the top-left corner of the WebContents.
|
| - void AccessibilityScrollToPoint(int acc_obj_id, gfx::Point point);
|
| -
|
| - // Relay a request from assistive technology to set text selection.
|
| - void AccessibilitySetTextSelection(
|
| - int acc_obj_id, int start_offset, int end_offset);
|
| -
|
| // Kill the renderer because we got a fatal accessibility error.
|
| void FatalAccessibilityTreeError();
|
|
|
|
|