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

Unified Diff: third_party/WebKit/Source/modules/fetch/FetchDataLoader.h

Issue 2177243002: Use per-frame TaskRunner instead of thread's default in DataConsumerHandle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@data_consumer_handle_unique_ptr
Patch Set: update Created 4 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: third_party/WebKit/Source/modules/fetch/FetchDataLoader.h
diff --git a/third_party/WebKit/Source/modules/fetch/FetchDataLoader.h b/third_party/WebKit/Source/modules/fetch/FetchDataLoader.h
index 745ab2400bb2536959fda6c905a9a3fac0efad37..3a439625ea2c99d1c706168f5778a62d50645830 100644
--- a/third_party/WebKit/Source/modules/fetch/FetchDataLoader.h
+++ b/third_party/WebKit/Source/modules/fetch/FetchDataLoader.h
@@ -67,7 +67,7 @@ public:
// start() should be called only once on the created thread.
// start() do not take the ownership of |handle|.
// |handle| must not be locked when called.
- virtual void start(FetchDataConsumerHandle* /* handle */, Client*) = 0;
+ virtual void start(FetchDataConsumerHandle* /* handle */, Client*, std::unique_ptr<WebTaskRunner>) = 0;
virtual void cancel() = 0;

Powered by Google App Engine
This is Rietveld 408576698