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 4a45df26931abb1ed27289a49b4ede523d5b266c..8a2eb0e6d5f7d0b2cdb1cbca1da37ae43d0d84d7 100644 |
--- a/content/public/browser/render_frame_host.h |
+++ b/content/public/browser/render_frame_host.h |
@@ -26,6 +26,7 @@ class Value; |
namespace content { |
class RenderProcessHost; |
class RenderViewHost; |
+class RenderWidgetHostView; |
class ServiceRegistry; |
class SiteInstance; |
@@ -188,6 +189,8 @@ class CONTENT_EXPORT RenderFrameHost : public IPC::Listener, |
// and still has a connection. This is valid for all frames. |
virtual bool IsRenderFrameLive() = 0; |
+ virtual RenderWidgetHostView* GetView() = 0; |
Charlie Reis
2016/01/21 00:33:03
nit: Add comment, probably taken from render_frame
kenrb
2016/01/22 18:33:58
Done.
|
+ |
private: |
// This interface should only be implemented inside content. |
friend class RenderFrameHostImpl; |