| Index: third_party/WebKit/Source/modules/fetch/FetchManager.cpp
|
| diff --git a/third_party/WebKit/Source/modules/fetch/FetchManager.cpp b/third_party/WebKit/Source/modules/fetch/FetchManager.cpp
|
| index 0acdab59700c33ad0442203cb2f7cc1eeb594da2..1d320cbae8b3f4b7d10ffee6e1ba038e0241986b 100644
|
| --- a/third_party/WebKit/Source/modules/fetch/FetchManager.cpp
|
| +++ b/third_party/WebKit/Source/modules/fetch/FetchManager.cpp
|
| @@ -10,6 +10,7 @@
|
| #include "bindings/core/v8/V8ThrowException.h"
|
| #include "core/dom/DOMArrayBuffer.h"
|
| #include "core/dom/Document.h"
|
| +#include "core/dom/TaskRunnerHelper.h"
|
| #include "core/fetch/FetchUtils.h"
|
| #include "core/fileapi/Blob.h"
|
| #include "core/frame/Frame.h"
|
| @@ -89,7 +90,7 @@ public:
|
| , m_url(url)
|
| , m_finished(false)
|
| {
|
| - m_reader = m_handle->obtainReader(this);
|
| + m_reader = m_handle->obtainReader(this, TaskRunnerHelper::getUnthrottledTaskRunner(loader->m_executionContext)->clone());
|
| }
|
|
|
| void didGetReadable() override
|
|
|