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

Side by Side Diff: content/public/browser/render_frame_host.h

Issue 407493004: Revert of Revert of Migrate accessibility from RenderView to RenderFrame. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/common/view_messages.h ('k') | content/public/browser/render_widget_host.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_
6 #define CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_ 6 #define CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback_forward.h" 10 #include "base/callback_forward.h"
11 #include "content/common/content_export.h" 11 #include "content/common/content_export.h"
12 #include "ipc/ipc_listener.h" 12 #include "ipc/ipc_listener.h"
13 #include "ipc/ipc_sender.h" 13 #include "ipc/ipc_sender.h"
14 #include "ui/gfx/native_widget_types.h" 14 #include "ui/gfx/native_widget_types.h"
15 #include "ui/gfx/rect.h"
15 #include "url/gurl.h" 16 #include "url/gurl.h"
16 17
17 namespace base { 18 namespace base {
18 class Value; 19 class Value;
19 } 20 }
20 21
21 namespace content { 22 namespace content {
22 class RenderProcessHost; 23 class RenderProcessHost;
23 class RenderViewHost; 24 class RenderViewHost;
24 class ServiceRegistry; 25 class ServiceRegistry;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 // Returns the associated widget's native view. 66 // Returns the associated widget's native view.
66 virtual gfx::NativeView GetNativeView() = 0; 67 virtual gfx::NativeView GetNativeView() = 0;
67 68
68 // Runs some JavaScript in this frame's context. If a callback is provided, it 69 // Runs some JavaScript in this frame's context. If a callback is provided, it
69 // will be used to return the result, when the result is available. 70 // will be used to return the result, when the result is available.
70 typedef base::Callback<void(const base::Value*)> JavaScriptResultCallback; 71 typedef base::Callback<void(const base::Value*)> JavaScriptResultCallback;
71 virtual void ExecuteJavaScript(const base::string16& javascript) = 0; 72 virtual void ExecuteJavaScript(const base::string16& javascript) = 0;
72 virtual void ExecuteJavaScript(const base::string16& javascript, 73 virtual void ExecuteJavaScript(const base::string16& javascript,
73 const JavaScriptResultCallback& callback) = 0; 74 const JavaScriptResultCallback& callback) = 0;
74 75
76 // Accessibility actions.
77 virtual void AccessibilitySetFocus(int acc_obj_id) = 0;
78 virtual void AccessibilityDoDefaultAction(int acc_obj_id) = 0;
79 virtual void AccessibilityScrollToMakeVisible(
80 int acc_obj_id, const gfx::Rect& subfocus) = 0;
81 virtual void AccessibilitySetTextSelection(
82 int acc_obj_id, int start_offset, int end_offset) = 0;
83
75 // Temporary until we get rid of RenderViewHost. 84 // Temporary until we get rid of RenderViewHost.
76 virtual RenderViewHost* GetRenderViewHost() = 0; 85 virtual RenderViewHost* GetRenderViewHost() = 0;
77 86
78 // Returns the ServiceRegistry for this frame. 87 // Returns the ServiceRegistry for this frame.
79 virtual ServiceRegistry* GetServiceRegistry() = 0; 88 virtual ServiceRegistry* GetServiceRegistry() = 0;
80 89
81 private: 90 private:
82 // This interface should only be implemented inside content. 91 // This interface should only be implemented inside content.
83 friend class RenderFrameHostImpl; 92 friend class RenderFrameHostImpl;
84 RenderFrameHost() {} 93 RenderFrameHost() {}
85 }; 94 };
86 95
87 } // namespace content 96 } // namespace content
88 97
89 #endif // CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_ 98 #endif // CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_
OLDNEW
« no previous file with comments | « content/common/view_messages.h ('k') | content/public/browser/render_widget_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698