| 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..430fb7cbc24cf07f570ab94a581d7df9a3325fba 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"
|
| @@ -132,6 +133,11 @@ public:
|
| m_loader->performNetworkError(errorMessage);
|
| }
|
|
|
| + WebTaskRunner* getTaskRunner() override
|
| + {
|
| + return TaskRunnerHelper::getUnthrottledTaskRunner(m_loader->m_executionContext);
|
| + }
|
| +
|
| bool isFinished() const { return m_finished; }
|
|
|
| DEFINE_INLINE_TRACE()
|
|
|