| Index: third_party/WebKit/Source/web/WebRemoteFrameImpl.h
|
| diff --git a/third_party/WebKit/Source/web/WebRemoteFrameImpl.h b/third_party/WebKit/Source/web/WebRemoteFrameImpl.h
|
| index ca92892ba210838de998961313897fb57d81cc68..91d83f9732c33ef3aff7e46a9d53475889942bc9 100644
|
| --- a/third_party/WebKit/Source/web/WebRemoteFrameImpl.h
|
| +++ b/third_party/WebKit/Source/web/WebRemoteFrameImpl.h
|
| @@ -152,7 +152,7 @@ public:
|
| void initializeCoreFrame(FrameHost*, FrameOwner*, const AtomicString& name, const AtomicString& fallbackName) override;
|
| RemoteFrame* frame() const override { return m_frame.get(); }
|
|
|
| - void setCoreFrame(PassRefPtrWillBeRawPtr<RemoteFrame>);
|
| + void setCoreFrame(RawPtr<RemoteFrame>);
|
|
|
| WebRemoteFrameClient* client() const { return m_client; }
|
|
|
| @@ -182,11 +182,11 @@ public:
|
| private:
|
| WebRemoteFrameImpl(WebTreeScopeType, WebRemoteFrameClient*);
|
|
|
| - OwnPtrWillBeMember<RemoteFrameClientImpl> m_frameClient;
|
| - RefPtrWillBeMember<RemoteFrame> m_frame;
|
| + Member<RemoteFrameClientImpl> m_frameClient;
|
| + Member<RemoteFrame> m_frame;
|
| WebRemoteFrameClient* m_client;
|
|
|
| - WillBeHeapHashMap<WebFrame*, OwnPtrWillBeMember<FrameOwner>> m_ownersForChildren;
|
| + HeapHashMap<WebFrame*, Member<FrameOwner>> m_ownersForChildren;
|
|
|
| #if ENABLE(OILPAN)
|
| // Oilpan: WebRemoteFrameImpl must remain alive until close() is called.
|
|
|