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

Unified Diff: third_party/WebKit/Source/web/RemoteFrameClientImpl.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
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
« no previous file with comments | « third_party/WebKit/Source/web/PrerendererClientImpl.h ('k') | third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698