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

Unified Diff: Source/modules/fetch/CompositeDataConsumerHandle.cpp

Issue 1303153005: Introduce WebTaskRunner Patch 3/5 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add missing #include Created 5 years, 3 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/CompositeDataConsumerHandle.cpp
diff --git a/Source/modules/fetch/CompositeDataConsumerHandle.cpp b/Source/modules/fetch/CompositeDataConsumerHandle.cpp
index 97c2580bfcfd7cf74879fc3b616ed2ed8c9334cb..1624e9879bcaa0dc8b7f4e3d689bbb10501424a2 100644
--- a/Source/modules/fetch/CompositeDataConsumerHandle.cpp
+++ b/Source/modules/fetch/CompositeDataConsumerHandle.cpp
@@ -141,7 +141,7 @@ private:
return;
}
++m_token;
- m_readerThread->postTask(FROM_HERE, new Task(threadSafeBind(&Context::updateReader, this, m_token)));
+ m_readerThread->taskRunner()->postTask(FROM_HERE, new Task(threadSafeBind(&Context::updateReader, this, m_token)));
}
OwnPtr<Reader> m_reader;
« no previous file with comments | « Source/modules/compositorworker/CompositorWorkerManagerTest.cpp ('k') | Source/modules/fetch/DataConsumerHandleTestUtil.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698