| Index: third_party/WebKit/Source/web/StorageQuotaClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/StorageQuotaClientImpl.cpp b/third_party/WebKit/Source/web/StorageQuotaClientImpl.cpp
|
| index 9e5356e23784cd72c2bac5eb0f0f40ac4bef8a77..0ced62c9e022f97534c259bb1ce0767d2a755eb9 100644
|
| --- a/third_party/WebKit/Source/web/StorageQuotaClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/StorageQuotaClientImpl.cpp
|
| @@ -36,6 +36,7 @@
|
| #include "core/dom/Document.h"
|
| #include "core/dom/ExceptionCode.h"
|
| #include "core/dom/ExecutionContext.h"
|
| +#include "core/dom/TaskRunnerHelper.h"
|
| #include "modules/quota/DOMError.h"
|
| #include "modules/quota/DeprecatedStorageQuotaCallbacksImpl.h"
|
| #include "modules/quota/StorageErrorCallback.h"
|
| @@ -71,7 +72,7 @@ void StorageQuotaClientImpl::requestQuota(ExecutionContext* executionContext,
|
| callbacks);
|
| } else {
|
| // Requesting quota in Worker is not supported.
|
| - executionContext->postTask(BLINK_FROM_HERE,
|
| + executionContext->postTask(TaskType::MiscPlatformAPI, BLINK_FROM_HERE,
|
| StorageErrorCallback::createSameThreadTask(
|
| errorCallback, NotSupportedError));
|
| }
|
|
|