| Index: content/renderer/render_frame_proxy.cc
|
| diff --git a/content/renderer/render_frame_proxy.cc b/content/renderer/render_frame_proxy.cc
|
| index 74bcd08f83fd5d30621189215620cb4af68e337f..18a595a66bfae045fa20bb6ca5516b2d41c94aff 100644
|
| --- a/content/renderer/render_frame_proxy.cc
|
| +++ b/content/renderer/render_frame_proxy.cc
|
| @@ -14,6 +14,7 @@
|
| #include "content/child/webmessageportchannel_impl.h"
|
| #include "content/common/content_security_policy_header.h"
|
| #include "content/common/frame_messages.h"
|
| +#include "content/common/frame_owner_properties.h"
|
| #include "content/common/frame_replication_state.h"
|
| #include "content/common/input_messages.h"
|
| #include "content/common/page_messages.h"
|
| @@ -357,8 +358,8 @@ void RenderFrameProxy::OnEnforceInsecureRequestPolicy(
|
| }
|
|
|
| void RenderFrameProxy::OnSetFrameOwnerProperties(
|
| - const blink::WebFrameOwnerProperties& properties) {
|
| - web_frame_->setFrameOwnerProperties(properties);
|
| + const FrameOwnerProperties& properties) {
|
| + web_frame_->setFrameOwnerProperties(properties.ToWebFrameOwnerProperties());
|
| }
|
|
|
| void RenderFrameProxy::OnDidUpdateOrigin(
|
|
|