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

Unified Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.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/FrameLoaderClientImpl.h
diff --git a/third_party/WebKit/Source/web/FrameLoaderClientImpl.h b/third_party/WebKit/Source/web/FrameLoaderClientImpl.h
index 80cf1c2c236a8560dd0dc699d81cd1cefb3ab415..746b71a384ffe738c290e84465723de06a00a8bf 100644
--- a/third_party/WebKit/Source/web/FrameLoaderClientImpl.h
+++ b/third_party/WebKit/Source/web/FrameLoaderClientImpl.h
@@ -44,7 +44,7 @@ class WebLocalFrameImpl;
class FrameLoaderClientImpl final : public FrameLoaderClient {
public:
- static PassOwnPtrWillBeRawPtr<FrameLoaderClientImpl> create(WebLocalFrameImpl*);
+ static RawPtr<FrameLoaderClientImpl> create(WebLocalFrameImpl*);
~FrameLoaderClientImpl() override;
@@ -119,13 +119,13 @@ public:
void didRunContentWithCertificateErrors(const KURL&, const CString& securityInfo, const WebURL& mainResourceUrl, const CString& mainResourceSecurityInfo) override;
void didChangePerformanceTiming() override;
void selectorMatchChanged(const Vector<String>& addedSelectors, const Vector<String>& removedSelectors) override;
- PassRefPtrWillBeRawPtr<DocumentLoader> createDocumentLoader(LocalFrame*, const ResourceRequest&, const SubstituteData&) override;
+ RawPtr<DocumentLoader> createDocumentLoader(LocalFrame*, const ResourceRequest&, const SubstituteData&) override;
WTF::String userAgent() override;
WTF::String doNotTrackValue() override;
void transitionToCommittedForNewPage() override;
- PassRefPtrWillBeRawPtr<LocalFrame> createFrame(const FrameLoadRequest&, const WTF::AtomicString& name, HTMLFrameOwnerElement*) override;
+ RawPtr<LocalFrame> createFrame(const FrameLoadRequest&, const WTF::AtomicString& name, HTMLFrameOwnerElement*) override;
virtual bool canCreatePluginWithoutRenderer(const String& mimeType) const;
- PassRefPtrWillBeRawPtr<Widget> createPlugin(
+ RawPtr<Widget> createPlugin(
HTMLPlugInElement*, const KURL&,
const Vector<WTF::String>&, const Vector<WTF::String>&,
const WTF::String&, bool loadManually, DetachedPluginPolicy) override;
@@ -182,7 +182,7 @@ public:
void suddenTerminationDisablerChanged(bool present, SuddenTerminationDisablerType) override;
- PassOwnPtrWillBeRawPtr<LinkResource> createServiceWorkerLinkResource(HTMLLinkElement*) override;
+ RawPtr<LinkResource> createServiceWorkerLinkResource(HTMLLinkElement*) override;
private:
explicit FrameLoaderClientImpl(WebLocalFrameImpl*);
@@ -191,7 +191,7 @@ private:
// The WebFrame that owns this object and manages its lifetime. Therefore,
// the web frame object is guaranteed to exist.
- RawPtrWillBeMember<WebLocalFrameImpl> m_webFrame;
+ Member<WebLocalFrameImpl> m_webFrame;
String m_userAgent;
};
« no previous file with comments | « third_party/WebKit/Source/web/ExternalPopupMenuTest.cpp ('k') | third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698