| Index: third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp b/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
|
| index c59416b8c9289cb4a7b438080773d28a35e13c54..06f879695584d6b390b402838e9ba9fd85efb030 100644
|
| --- a/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
|
| @@ -599,7 +599,7 @@ WebLocalFrame* WebRemoteFrameImpl::createLocalChild(WebTreeScopeType scope, cons
|
| {
|
| WebLocalFrameImpl* child = WebLocalFrameImpl::create(scope, client, opener);
|
| insertAfter(child, previousSibling);
|
| - RefPtrWillBeRawPtr<RemoteFrameOwner> owner = RemoteFrameOwner::create(static_cast<SandboxFlags>(sandboxFlags), frameOwnerProperties);
|
| + RawPtr<RemoteFrameOwner> owner = RemoteFrameOwner::create(static_cast<SandboxFlags>(sandboxFlags), frameOwnerProperties);
|
| // FIXME: currently this calls LocalFrame::init() on the created LocalFrame, which may
|
| // result in the browser observing two navigations to about:blank (one from the initial
|
| // frame creation, and one from swapping it into the remote process). FrameLoader might
|
| @@ -622,12 +622,12 @@ WebRemoteFrame* WebRemoteFrameImpl::createRemoteChild(WebTreeScopeType scope, co
|
| {
|
| WebRemoteFrameImpl* child = WebRemoteFrameImpl::create(scope, client, opener);
|
| appendChild(child);
|
| - RefPtrWillBeRawPtr<RemoteFrameOwner> owner = RemoteFrameOwner::create(static_cast<SandboxFlags>(sandboxFlags), WebFrameOwnerProperties());
|
| + RawPtr<RemoteFrameOwner> owner = RemoteFrameOwner::create(static_cast<SandboxFlags>(sandboxFlags), WebFrameOwnerProperties());
|
| child->initializeCoreFrame(frame()->host(), owner.get(), name, uniqueName);
|
| return child;
|
| }
|
|
|
| -void WebRemoteFrameImpl::setCoreFrame(PassRefPtrWillBeRawPtr<RemoteFrame> frame)
|
| +void WebRemoteFrameImpl::setCoreFrame(RawPtr<RemoteFrame> frame)
|
| {
|
| m_frame = frame;
|
| }
|
|
|