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

Unified Diff: content/renderer/render_view_impl_params.h

Issue 692973005: Pass origin information for remote frame creation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: content/renderer/render_view_impl_params.h
diff --git a/content/renderer/render_view_impl_params.h b/content/renderer/render_view_impl_params.h
index ad9a26c61d3651439d627b9bfbadd03bbc38de9d..1ef6825dbd425b68aed18dc81552c5cd15a0842a 100644
--- a/content/renderer/render_view_impl_params.h
+++ b/content/renderer/render_view_impl_params.h
@@ -9,6 +9,7 @@
#include "base/memory/ref_counted.h"
#include "base/strings/string16.h"
#include "content/common/content_export.h"
+#include "content/common/frame_replication_state.h"
#include "content/common/view_message_enums.h"
namespace blink {
@@ -37,7 +38,8 @@ struct CONTENT_EXPORT RenderViewImplParams {
bool hidden,
bool never_visible,
int32 next_page_id,
- const blink::WebScreenInfo& screen_info);
+ const blink::WebScreenInfo& screen_info,
+ const FrameReplicationState& remote_frame_state);
~RenderViewImplParams();
int32 opener_id;
@@ -56,6 +58,7 @@ struct CONTENT_EXPORT RenderViewImplParams {
bool never_visible;
int32 next_page_id;
const blink::WebScreenInfo& screen_info;
+ const FrameReplicationState& remote_frame_state;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698