Index: content/renderer/render_frame_proxy.h |
diff --git a/content/renderer/render_frame_proxy.h b/content/renderer/render_frame_proxy.h |
index 2afd45383e3138bae59fa209dda2b2acd06eeed1..509a23105a37da1955ab29b9096a13b8735e7652 100644 |
--- a/content/renderer/render_frame_proxy.h |
+++ b/content/renderer/render_frame_proxy.h |
@@ -10,9 +10,9 @@ |
#include "content/common/content_export.h" |
#include "ipc/ipc_listener.h" |
#include "ipc/ipc_sender.h" |
- |
#include "third_party/WebKit/public/web/WebRemoteFrame.h" |
#include "third_party/WebKit/public/web/WebRemoteFrameClient.h" |
+#include "url/origin.h" |
struct FrameMsg_BuffersSwapped_Params; |
struct FrameMsg_CompositorFrameSwapped_Params; |
@@ -26,6 +26,7 @@ namespace content { |
class ChildFrameCompositingHelper; |
class RenderFrameImpl; |
class RenderViewImpl; |
+struct FrameReplicationState; |
// When a page's frames are rendered by multiple processes, each renderer has a |
// full copy of the frame tree. It has full RenderFrames for the frames it is |
@@ -76,7 +77,8 @@ class CONTENT_EXPORT RenderFrameProxy |
// as a frame, not a proxy. |
static RenderFrameProxy* CreateFrameProxy(int routing_id, |
int parent_routing_id, |
- int render_view_routing_id); |
+ int render_view_routing_id, |
+ const FrameReplicationState&); |
Charlie Reis
2014/11/13 18:00:58
Style: Needs a parameter name that matches the .cc
alexmos
2014/11/18 18:25:33
Done.
|
// Returns the RenderFrameProxy for the given routing ID. |
static RenderFrameProxy* FromRoutingID(int routing_id); |