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

Unified Diff: third_party/WebKit/Source/core/fetch/LinkFetchResource.h

Issue 1852663002: Oilpan: Remove WillBe types (part 9) (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/core/fetch/LinkFetchResource.h
diff --git a/third_party/WebKit/Source/core/fetch/LinkFetchResource.h b/third_party/WebKit/Source/core/fetch/LinkFetchResource.h
index 84d16fb50244dd6a15e70ac667dfa74c0d1e697c..78cff1a886be9a1e6eabae03ef660d42a9a91969 100644
--- a/third_party/WebKit/Source/core/fetch/LinkFetchResource.h
+++ b/third_party/WebKit/Source/core/fetch/LinkFetchResource.h
@@ -18,7 +18,7 @@ class LinkFetchResource final : public Resource {
public:
using ClientType = ResourceClient;
- static PassRefPtrWillBeRawPtr<Resource> fetch(Resource::Type, FetchRequest&, ResourceFetcher*);
+ static RawPtr<Resource> fetch(Resource::Type, FetchRequest&, ResourceFetcher*);
~LinkFetchResource() override;
private:
@@ -27,9 +27,9 @@ private:
LinkResourceFactory(Resource::Type type)
: ResourceFactory(type) { }
- PassRefPtrWillBeRawPtr<Resource> create(const ResourceRequest& request, const ResourceLoaderOptions& options, const String& charset) const override
+ RawPtr<Resource> create(const ResourceRequest& request, const ResourceLoaderOptions& options, const String& charset) const override
{
- return adoptRefWillBeNoop(new LinkFetchResource(request, type(), options));
+ return new LinkFetchResource(request, type(), options);
}
};
LinkFetchResource(const ResourceRequest&, Type, const ResourceLoaderOptions&);
« no previous file with comments | « third_party/WebKit/Source/core/fetch/ImageResourceTest.cpp ('k') | third_party/WebKit/Source/core/fetch/LinkFetchResource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698