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

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

Issue 1123783002: Add ExecuteJavaScriptForTest and make all tests use it (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: android Created 5 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
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"
(...skipping 17 matching lines...) Expand all
28 class SiteInstance; 28 class SiteInstance;
29 29
30 // The interface provides a communication conduit with a frame in the renderer. 30 // The interface provides a communication conduit with a frame in the renderer.
31 class CONTENT_EXPORT RenderFrameHost : public IPC::Listener, 31 class CONTENT_EXPORT RenderFrameHost : public IPC::Listener,
32 public IPC::Sender { 32 public IPC::Sender {
33 public: 33 public:
34 // Returns the RenderFrameHost given its ID and the ID of its render process. 34 // Returns the RenderFrameHost given its ID and the ID of its render process.
35 // Returns nullptr if the IDs do not correspond to a live RenderFrameHost. 35 // Returns nullptr if the IDs do not correspond to a live RenderFrameHost.
36 static RenderFrameHost* FromID(int render_process_id, int render_frame_id); 36 static RenderFrameHost* FromID(int render_process_id, int render_frame_id);
37 37
38 // Globally allows for injecting JavaScript into the main world. This feature
39 // is present only to support Android WebView and must not be used in other
40 // configurations.
41 static void AllowInjectingJavaScriptForAndroidWebView();
jochen (gone - plz use gerrit) 2015/07/16 04:53:17 Richard & John, ptal esp. at this method There is
Torne 2015/07/16 12:41:57 This seems reasonable to me.
42
38 ~RenderFrameHost() override {} 43 ~RenderFrameHost() override {}
39 44
40 // Returns the route id for this frame. 45 // Returns the route id for this frame.
41 virtual int GetRoutingID() = 0; 46 virtual int GetRoutingID() = 0;
42 47
43 // Returns the SiteInstance grouping all RenderFrameHosts that have script 48 // Returns the SiteInstance grouping all RenderFrameHosts that have script
44 // access to this RenderFrameHost, and must therefore live in the same 49 // access to this RenderFrameHost, and must therefore live in the same
45 // process. 50 // process.
46 virtual SiteInstance* GetSiteInstance() = 0; 51 virtual SiteInstance* GetSiteInstance() = 0;
47 52
(...skipping 19 matching lines...) Expand all
67 72
68 // Returns the associated widget's native view. 73 // Returns the associated widget's native view.
69 virtual gfx::NativeView GetNativeView() = 0; 74 virtual gfx::NativeView GetNativeView() = 0;
70 75
71 // Adds |message| to the DevTools console. 76 // Adds |message| to the DevTools console.
72 virtual void AddMessageToConsole(ConsoleMessageLevel level, 77 virtual void AddMessageToConsole(ConsoleMessageLevel level,
73 const std::string& message) = 0; 78 const std::string& message) = 0;
74 79
75 // Runs some JavaScript in this frame's context. If a callback is provided, it 80 // Runs some JavaScript in this frame's context. If a callback is provided, it
76 // will be used to return the result, when the result is available. 81 // will be used to return the result, when the result is available.
82 // This API can only be called on chrome:// or chrome-devtools:// URLs.
77 typedef base::Callback<void(const base::Value*)> JavaScriptResultCallback; 83 typedef base::Callback<void(const base::Value*)> JavaScriptResultCallback;
78 virtual void ExecuteJavaScript(const base::string16& javascript) = 0; 84 virtual void ExecuteJavaScript(const base::string16& javascript) = 0;
79 virtual void ExecuteJavaScript(const base::string16& javascript, 85 virtual void ExecuteJavaScript(const base::string16& javascript,
80 const JavaScriptResultCallback& callback) = 0; 86 const JavaScriptResultCallback& callback) = 0;
87
88 // Runs some JavaScript in an isolated world of top of this frame's context.
81 virtual void ExecuteJavaScriptInIsolatedWorld( 89 virtual void ExecuteJavaScriptInIsolatedWorld(
82 const base::string16& javascript, 90 const base::string16& javascript,
83 const JavaScriptResultCallback& callback, 91 const JavaScriptResultCallback& callback,
84 int world_id) = 0; 92 int world_id) = 0;
85 93
86 // ONLY FOR TESTS: Same as above but adds a fake UserGestureIndicator around 94 // ONLY FOR TESTS: Same as above but without restrictions. Optionally, adds a
87 // execution. (crbug.com/408426) 95 // fake UserGestureIndicator around execution. (crbug.com/408426)
96 virtual void ExecuteJavaScriptForTests(const base::string16& javascript) = 0;
97 virtual void ExecuteJavaScriptForTests(
98 const base::string16& javascript,
99 const JavaScriptResultCallback& callback) = 0;
88 virtual void ExecuteJavaScriptWithUserGestureForTests( 100 virtual void ExecuteJavaScriptWithUserGestureForTests(
89 const base::string16& javascript) = 0; 101 const base::string16& javascript) = 0;
90 102
91 // Accessibility actions - these send a message to the RenderFrame 103 // Accessibility actions - these send a message to the RenderFrame
92 // to trigger an action on an accessibility object. 104 // to trigger an action on an accessibility object.
93 virtual void AccessibilitySetFocus(int acc_obj_id) = 0; 105 virtual void AccessibilitySetFocus(int acc_obj_id) = 0;
94 virtual void AccessibilityDoDefaultAction(int acc_obj_id) = 0; 106 virtual void AccessibilityDoDefaultAction(int acc_obj_id) = 0;
95 virtual void AccessibilityScrollToMakeVisible( 107 virtual void AccessibilityScrollToMakeVisible(
96 int acc_obj_id, const gfx::Rect& subfocus) = 0; 108 int acc_obj_id, const gfx::Rect& subfocus) = 0;
97 virtual void AccessibilityShowContextMenu(int acc_obj_id) = 0; 109 virtual void AccessibilityShowContextMenu(int acc_obj_id) = 0;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 142
131 private: 143 private:
132 // This interface should only be implemented inside content. 144 // This interface should only be implemented inside content.
133 friend class RenderFrameHostImpl; 145 friend class RenderFrameHostImpl;
134 RenderFrameHost() {} 146 RenderFrameHost() {}
135 }; 147 };
136 148
137 } // namespace content 149 } // namespace content
138 150
139 #endif // CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_ 151 #endif // CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698