| Index: third_party/WebKit/Source/modules/fetch/Body.cpp
|
| diff --git a/third_party/WebKit/Source/modules/fetch/Body.cpp b/third_party/WebKit/Source/modules/fetch/Body.cpp
|
| index d7d78ec5cbd95d21bc53dd1624f6d78023872445..36c65655684c75b2705942a38b0fb8c3e198ddc9 100644
|
| --- a/third_party/WebKit/Source/modules/fetch/Body.cpp
|
| +++ b/third_party/WebKit/Source/modules/fetch/Body.cpp
|
| @@ -10,6 +10,7 @@
|
| #include "bindings/core/v8/V8ThrowException.h"
|
| #include "core/dom/DOMArrayBuffer.h"
|
| #include "core/dom/DOMTypedArray.h"
|
| +#include "core/dom/TaskRunnerHelper.h"
|
| #include "core/fileapi/Blob.h"
|
| #include "core/frame/UseCounter.h"
|
| #include "modules/fetch/BodyStreamBuffer.h"
|
| @@ -35,6 +36,11 @@ public:
|
| m_resolver->reject(V8ThrowException::createTypeError(resolver()->getScriptState()->isolate(), "Failed to fetch"));
|
| }
|
|
|
| + WebTaskRunner* getTaskRunner() override
|
| + {
|
| + return TaskRunnerHelper::getUnthrottledTaskRunner(resolver()->getScriptState());
|
| + }
|
| +
|
| DEFINE_INLINE_TRACE()
|
| {
|
| visitor->trace(m_resolver);
|
|
|