| Index: content/renderer/accessibility/render_accessibility_impl.h
|
| diff --git a/content/renderer/accessibility/render_accessibility_impl.h b/content/renderer/accessibility/render_accessibility_impl.h
|
| index 77e0b1b88bb54ced8a02379a0f0ffdae70ff3598..35223e8a6ef900d21b61dbf4bf5dc5812abb28bb 100644
|
| --- a/content/renderer/accessibility/render_accessibility_impl.h
|
| +++ b/content/renderer/accessibility/render_accessibility_impl.h
|
| @@ -27,6 +27,10 @@ class WebDocument;
|
| class WebNode;
|
| };
|
|
|
| +namespace ui {
|
| +struct AXActionData;
|
| +}
|
| +
|
| namespace content {
|
| class RenderFrameImpl;
|
|
|
| @@ -115,23 +119,14 @@ class CONTENT_EXPORT RenderAccessibilityImpl
|
| void OnDestruct() override;
|
|
|
| // Handlers for messages from the browser to the renderer.
|
| - void OnDoDefaultAction(int acc_obj_id);
|
| + void OnPerformAction(ui::AXAction action,
|
| + const ui::AXActionData& data);
|
| void OnEventsAck(int ack_token);
|
| void OnFatalError();
|
| - void OnHitTest(gfx::Point point);
|
| - void OnSetAccessibilityFocus(int acc_obj_id);
|
| void OnReset(int reset_token);
|
| - void OnScrollToMakeVisible(int acc_obj_id, gfx::Rect subfocus);
|
| - void OnScrollToPoint(int acc_obj_id, gfx::Point point);
|
| - void OnSetScrollOffset(int acc_obj_id, gfx::Point offset);
|
| - void OnSetFocus(int acc_obj_id);
|
| - void OnSetSelection(int anchor_acc_obj_id,
|
| - int anchor_offset,
|
| - int focus_acc_obj_id,
|
| - int focus_offset);
|
| - void OnSetValue(int acc_obj_id, base::string16 value);
|
| - void OnShowContextMenu(int acc_obj_id);
|
|
|
| + void OnHitTest(const gfx::Point& point);
|
| + void OnSetAccessibilityFocus(const blink::WebAXObject& obj);
|
| void AddPluginTreeToUpdate(AXContentTreeUpdate* update);
|
| void ScrollPlugin(int id_to_make_visible);
|
|
|
|
|