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

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: Address review feedback; send origins with DidCommitProvisionalLoad 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..2126c1696d3b3f8cc1668c5879aaccd3f0d58686 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 {
@@ -33,6 +34,7 @@ struct CONTENT_EXPORT RenderViewImplParams {
const base::string16& frame_name,
bool is_renderer_created,
bool swapped_out,
+ const FrameReplicationState& remote_frame_state,
int32 proxy_routing_id,
bool hidden,
bool never_visible,
@@ -51,6 +53,7 @@ struct CONTENT_EXPORT RenderViewImplParams {
const base::string16& frame_name;
bool is_renderer_created;
bool swapped_out;
+ const FrameReplicationState& remote_frame_state;
int32 proxy_routing_id;
bool hidden;
bool never_visible;

Powered by Google App Engine
This is Rietveld 408576698