| Index: content/browser/frame_host/render_frame_host_impl.cc
|
| diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
|
| index dd1a4be1563a21b8f6f5ba460a1e0fc804cb304d..9533a0917ece84837e50fff2e29426f1978c1a1c 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -1611,23 +1611,15 @@ void RenderFrameHostImpl::OnDidChangeSandboxFlags(
|
|
|
| void RenderFrameHostImpl::OnDidChangeFrameOwnerProperties(
|
| int32_t frame_routing_id,
|
| - const blink::WebFrameOwnerProperties& frame_owner_properties) {
|
| + const blink::WebFrameOwnerProperties& properties) {
|
| FrameTreeNode* child = FindAndVerifyChild(
|
| frame_routing_id, bad_message::RFH_OWNER_PROPERTY);
|
| if (!child)
|
| return;
|
|
|
| - child->set_frame_owner_properties(frame_owner_properties);
|
| + child->set_frame_owner_properties(properties);
|
|
|
| - // Notify the RenderFrame if it lives in a different process from its parent.
|
| - // These properties only affect the RenderFrame and live in its parent
|
| - // (HTMLFrameOwnerElement). Therefore, we do not need to notify this frame's
|
| - // proxies.
|
| - RenderFrameHost* child_rfh = child->current_frame_host();
|
| - if (child_rfh->GetSiteInstance() != GetSiteInstance()) {
|
| - child_rfh->Send(new FrameMsg_SetFrameOwnerProperties(
|
| - child_rfh->GetRoutingID(), frame_owner_properties));
|
| - }
|
| + child->render_manager()->OnDidUpdateFrameOwnerProperties(properties);
|
| }
|
|
|
| void RenderFrameHostImpl::OnUpdateTitle(
|
|
|