| Index: third_party/WebKit/Source/web/RemoteFrameClientImpl.h
|
| diff --git a/third_party/WebKit/Source/web/RemoteFrameClientImpl.h b/third_party/WebKit/Source/web/RemoteFrameClientImpl.h
|
| index 2dcc200c97b798e7e1ffee24b68b1c1d1c3c6274..cb4165e61e960dfec6942dac294d30cb37b0edb4 100644
|
| --- a/third_party/WebKit/Source/web/RemoteFrameClientImpl.h
|
| +++ b/third_party/WebKit/Source/web/RemoteFrameClientImpl.h
|
| @@ -12,7 +12,7 @@ class WebRemoteFrameImpl;
|
|
|
| class RemoteFrameClientImpl final : public RemoteFrameClient {
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<RemoteFrameClientImpl> create(WebRemoteFrameImpl*);
|
| + static RawPtr<RemoteFrameClientImpl> create(WebRemoteFrameImpl*);
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| @@ -45,7 +45,7 @@ public:
|
| private:
|
| explicit RemoteFrameClientImpl(WebRemoteFrameImpl*);
|
|
|
| - RawPtrWillBeMember<WebRemoteFrameImpl> m_webFrame;
|
| + Member<WebRemoteFrameImpl> m_webFrame;
|
| };
|
|
|
| } // namespace blink
|
|
|