Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Unified Diff: third_party/WebKit/Source/web/WebRemoteFrameImpl.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/web/WebRange.cpp ('k') | third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 480b8f77d1dd496c457d24b97dd0b2219285aa1c..7e3d3f6bc025dfed3a8b0c335a3d3be2f480c633 100644
--- a/third_party/WebKit/Source/web/WebRemoteFrameImpl.h
+++ b/third_party/WebKit/Source/web/WebRemoteFrameImpl.h
@@ -143,7 +143,7 @@ public:
void initializeCoreFrame(FrameHost*, FrameOwner*, const AtomicString& name, const AtomicString& uniqueName) override;
RemoteFrame* frame() const override { return m_frame.get(); }
- void setCoreFrame(PassRefPtrWillBeRawPtr<RemoteFrame>);
+ void setCoreFrame(RawPtr<RemoteFrame>);
WebRemoteFrameClient* client() const { return m_client; }
@@ -181,8 +181,8 @@ private:
bool isWebRemoteFrame() const override;
WebRemoteFrame* toWebRemoteFrame() override;
- OwnPtrWillBeMember<RemoteFrameClientImpl> m_frameClient;
- RefPtrWillBeMember<RemoteFrame> m_frame;
+ Member<RemoteFrameClientImpl> m_frameClient;
+ Member<RemoteFrame> m_frame;
WebRemoteFrameClient* m_client;
#if ENABLE(OILPAN)
« no previous file with comments | « third_party/WebKit/Source/web/WebRange.cpp ('k') | third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698