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

Unified Diff: content/browser/frame_host/render_frame_proxy_host.cc

Issue 1938753002: OOPIF: Replicate allowFullscreen flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup Created 4 years, 8 months 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/browser/frame_host/render_frame_proxy_host.cc
diff --git a/content/browser/frame_host/render_frame_proxy_host.cc b/content/browser/frame_host/render_frame_proxy_host.cc
index f4ba295b7add988c7c38c4620db9f4af7ab69cf1..dbfeaaa027dd2735ca25d2761d998477d151cc6c 100644
--- a/content/browser/frame_host/render_frame_proxy_host.cc
+++ b/content/browser/frame_host/render_frame_proxy_host.cc
@@ -194,6 +194,12 @@ bool RenderFrameProxyHost::InitRenderFrameProxy() {
->current_replication_state()));
render_frame_proxy_created_ = true;
+
+ if (frame_tree_node_->parent()) {
+ Send(new FrameMsg_SetFrameOwnerProperties(
alexmos 2016/05/02 17:44:06 On one hand this probably makes sense to send as p
+ routing_id_, frame_tree_node_->frame_owner_properties()));
+ }
+
return true;
}

Powered by Google App Engine
This is Rietveld 408576698