Index: content/common/view_messages.h |
diff --git a/content/common/view_messages.h b/content/common/view_messages.h |
index 426ac1faa1213af5657497bcc4901e15d81c1674..b24b856e702027268b272c6ca447f8cc2e4b8758 100644 |
--- a/content/common/view_messages.h |
+++ b/content/common/view_messages.h |
@@ -15,6 +15,7 @@ |
#include "content/common/content_param_traits.h" |
#include "content/common/cookie_data.h" |
#include "content/common/date_time_suggestion.h" |
+#include "content/common/frame_replication_state.h" |
#include "content/common/navigation_gesture.h" |
#include "content/common/view_message_enums.h" |
#include "content/common/webplugin_geometry.h" |
@@ -442,6 +443,11 @@ IPC_STRUCT_BEGIN(ViewMsg_New_Params) |
// Whether the RenderView should initially be swapped out. |
IPC_STRUCT_MEMBER(bool, swapped_out) |
+ // In --site-per-process mode, if this view is |swapped_out|, its main frame |
+ // will become a RenderFrameProxy. This structure is used to replicate |
Charlie Reis
2014/11/19 00:46:18
nit: This structure -> |remote_frame_state|
alexmos
2014/11/19 02:49:27
Done.
|
+ // information such as security origin to that RenderFrameProxy. |
+ IPC_STRUCT_MEMBER(content::FrameReplicationState, remote_frame_state) |
+ |
// The ID of the proxy object for the main frame in this view. It is only |
// used if |swapped_out| is true. |
IPC_STRUCT_MEMBER(int32, proxy_routing_id) |