OLD | NEW |
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 "url/gurl.h" | 15 #include "url/gurl.h" |
16 | 16 |
17 namespace base { | 17 namespace base { |
18 class Value; | 18 class Value; |
19 } | 19 } |
20 | 20 |
21 namespace content { | 21 namespace content { |
22 class RenderProcessHost; | 22 class RenderProcessHost; |
23 class RenderViewHost; | 23 class RenderViewHost; |
24 class ServiceRegistry; | |
25 class SiteInstance; | 24 class SiteInstance; |
26 | 25 |
27 // The interface provides a communication conduit with a frame in the renderer. | 26 // The interface provides a communication conduit with a frame in the renderer. |
28 class CONTENT_EXPORT RenderFrameHost : public IPC::Listener, | 27 class CONTENT_EXPORT RenderFrameHost : public IPC::Listener, |
29 public IPC::Sender { | 28 public IPC::Sender { |
30 public: | 29 public: |
31 // Returns the RenderFrameHost given its ID and the ID of its render process. | 30 // Returns the RenderFrameHost given its ID and the ID of its render process. |
32 // Returns NULL if the IDs do not correspond to a live RenderFrameHost. | 31 // Returns NULL if the IDs do not correspond to a live RenderFrameHost. |
33 static RenderFrameHost* FromID(int render_process_id, int render_frame_id); | 32 static RenderFrameHost* FromID(int render_process_id, int render_frame_id); |
34 | 33 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 // Runs some JavaScript in this frame's context. If a callback is provided, it | 67 // 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. | 68 // will be used to return the result, when the result is available. |
70 typedef base::Callback<void(const base::Value*)> JavaScriptResultCallback; | 69 typedef base::Callback<void(const base::Value*)> JavaScriptResultCallback; |
71 virtual void ExecuteJavaScript(const base::string16& javascript) = 0; | 70 virtual void ExecuteJavaScript(const base::string16& javascript) = 0; |
72 virtual void ExecuteJavaScript(const base::string16& javascript, | 71 virtual void ExecuteJavaScript(const base::string16& javascript, |
73 const JavaScriptResultCallback& callback) = 0; | 72 const JavaScriptResultCallback& callback) = 0; |
74 | 73 |
75 // Temporary until we get rid of RenderViewHost. | 74 // Temporary until we get rid of RenderViewHost. |
76 virtual RenderViewHost* GetRenderViewHost() = 0; | 75 virtual RenderViewHost* GetRenderViewHost() = 0; |
77 | 76 |
78 // Returns the ServiceRegistry for this frame. | |
79 virtual ServiceRegistry* GetServiceRegistry() = 0; | |
80 | |
81 private: | 77 private: |
82 // This interface should only be implemented inside content. | 78 // This interface should only be implemented inside content. |
83 friend class RenderFrameHostImpl; | 79 friend class RenderFrameHostImpl; |
84 RenderFrameHost() {} | 80 RenderFrameHost() {} |
85 }; | 81 }; |
86 | 82 |
87 } // namespace content | 83 } // namespace content |
88 | 84 |
89 #endif // CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_ | 85 #endif // CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_ |
OLD | NEW |