| Index: content/public/browser/render_frame_host.h
|
| diff --git a/content/public/browser/render_frame_host.h b/content/public/browser/render_frame_host.h
|
| index ac6ba5aa8d7daad53e989f6e029d98d86781c65e..fede0bf247115fb9a6086bb4511eee08ed102929 100644
|
| --- a/content/public/browser/render_frame_host.h
|
| +++ b/content/public/browser/render_frame_host.h
|
| @@ -12,6 +12,7 @@
|
| #include "ipc/ipc_listener.h"
|
| #include "ipc/ipc_sender.h"
|
| #include "ui/gfx/native_widget_types.h"
|
| +#include "ui/gfx/rect.h"
|
| #include "url/gurl.h"
|
|
|
| namespace base {
|
| @@ -71,6 +72,14 @@ class CONTENT_EXPORT RenderFrameHost : public IPC::Listener,
|
| virtual void ExecuteJavaScript(const base::string16& javascript,
|
| const JavaScriptResultCallback& callback) = 0;
|
|
|
| + // Accessibility actions.
|
| + virtual void AccessibilitySetFocus(int acc_obj_id) = 0;
|
| + virtual void AccessibilityDoDefaultAction(int acc_obj_id) = 0;
|
| + virtual void AccessibilityScrollToMakeVisible(
|
| + int acc_obj_id, gfx::Rect subfocus) = 0;
|
| + virtual void AccessibilitySetTextSelection(
|
| + int acc_obj_id, int start_offset, int end_offset) = 0;
|
| +
|
| // Temporary until we get rid of RenderViewHost.
|
| virtual RenderViewHost* GetRenderViewHost() = 0;
|
|
|
|
|