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

Unified Diff: Source/modules/fetch/FetchBlobDataConsumerHandle.h

Issue 1264453002: Split the constructor of ThreadableLoader into two methods (ctor and start()) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 5 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/modules/fetch/FetchBlobDataConsumerHandle.h
diff --git a/Source/modules/fetch/FetchBlobDataConsumerHandle.h b/Source/modules/fetch/FetchBlobDataConsumerHandle.h
index f94b404bab9d55fbd707199c09b2af6cf040e68a..33430bea665253e9f6347801fab901adbda13616 100644
--- a/Source/modules/fetch/FetchBlobDataConsumerHandle.h
+++ b/Source/modules/fetch/FetchBlobDataConsumerHandle.h
@@ -22,7 +22,7 @@ class MODULES_EXPORT FetchBlobDataConsumerHandle final : public FetchDataConsume
public:
class MODULES_EXPORT LoaderFactory : public GarbageCollectedFinalized<LoaderFactory> {
public:
- virtual PassRefPtr<ThreadableLoader> create(ExecutionContext&, ThreadableLoaderClient*, const ResourceRequest&, const ThreadableLoaderOptions&, const ResourceLoaderOptions&) = 0;
+ virtual PassRefPtr<ThreadableLoader> create(ExecutionContext&, ThreadableLoaderClient*, const ThreadableLoaderOptions&, const ResourceLoaderOptions&) = 0;
virtual ~LoaderFactory() { }
DEFINE_INLINE_VIRTUAL_TRACE() { }
};

Powered by Google App Engine
This is Rietveld 408576698