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

Unified Diff: Source/core/loader/FrameFetchContext.h

Issue 1124153003: [Oilpan] [Reland] Migrate classes under core/fetch to Oilpan heap (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix webkit_tests Created 5 years, 6 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: Source/core/loader/FrameFetchContext.h
diff --git a/Source/core/loader/FrameFetchContext.h b/Source/core/loader/FrameFetchContext.h
index f4b79eb40ec58b5b3fff0b0d987f2429d125402d..76e42705791eac1463841905257529192645f061 100644
--- a/Source/core/loader/FrameFetchContext.h
+++ b/Source/core/loader/FrameFetchContext.h
@@ -50,9 +50,9 @@ class ResourceRequest;
class CORE_EXPORT FrameFetchContext final : public FetchContext {
public:
- static PassRefPtrWillBeRawPtr<ResourceFetcher> createContextAndFetcher(DocumentLoader* loader)
+ static ResourceFetcher* createContextAndFetcher(DocumentLoader* loader)
{
- return ResourceFetcher::create(adoptPtrWillBeNoop(new FrameFetchContext(loader)));
+ return ResourceFetcher::create(new FrameFetchContext(loader));
}
static void provideDocumentToContext(FetchContext& context, Document* document)

Powered by Google App Engine
This is Rietveld 408576698