| Index: content/renderer/render_frame_proxy.cc
|
| diff --git a/content/renderer/render_frame_proxy.cc b/content/renderer/render_frame_proxy.cc
|
| index 7a52f2c49026a736b572b903bf883c54ea5566a5..cf619665b82a46e8dc31f5eace8aac6dd9294b0a 100644
|
| --- a/content/renderer/render_frame_proxy.cc
|
| +++ b/content/renderer/render_frame_proxy.cc
|
| @@ -100,6 +100,7 @@ RenderFrameProxy* RenderFrameProxy::CreateFrameProxy(
|
| web_frame = parent->web_frame()->createRemoteChild(
|
| replicated_state.scope,
|
| blink::WebString::fromUTF8(replicated_state.name),
|
| + blink::WebString::fromUTF8(replicated_state.unique_name),
|
| replicated_state.sandbox_flags, proxy.get());
|
| render_view = parent->render_view();
|
| render_widget = parent->render_widget();
|
| @@ -215,7 +216,8 @@ void RenderFrameProxy::SetReplicatedState(const FrameReplicationState& state) {
|
| DCHECK(web_frame_);
|
| web_frame_->setReplicatedOrigin(state.origin);
|
| web_frame_->setReplicatedSandboxFlags(state.sandbox_flags);
|
| - web_frame_->setReplicatedName(blink::WebString::fromUTF8(state.name));
|
| + web_frame_->setReplicatedName(blink::WebString::fromUTF8(state.name),
|
| + blink::WebString::fromUTF8(state.unique_name));
|
| web_frame_->setReplicatedShouldEnforceStrictMixedContentChecking(
|
| state.should_enforce_strict_mixed_content_checking);
|
| }
|
| @@ -363,8 +365,10 @@ void RenderFrameProxy::OnDispatchLoad() {
|
| web_frame_->DispatchLoadEventForFrameOwner();
|
| }
|
|
|
| -void RenderFrameProxy::OnDidUpdateName(const std::string& name) {
|
| - web_frame_->setReplicatedName(blink::WebString::fromUTF8(name));
|
| +void RenderFrameProxy::OnDidUpdateName(const std::string& name,
|
| + const std::string& unique_name) {
|
| + web_frame_->setReplicatedName(blink::WebString::fromUTF8(name),
|
| + blink::WebString::fromUTF8(unique_name));
|
| }
|
|
|
| void RenderFrameProxy::OnEnforceStrictMixedContentChecking(
|
|
|