| Index: third_party/WebKit/Source/modules/quota/DeprecatedStorageInfo.cpp
|
| diff --git a/third_party/WebKit/Source/modules/quota/DeprecatedStorageInfo.cpp b/third_party/WebKit/Source/modules/quota/DeprecatedStorageInfo.cpp
|
| index 0fc83cacc897939bd63cdb7dc85ea734a3b1da80..715a428f887dc74e222104ebc70a06236892ce61 100644
|
| --- a/third_party/WebKit/Source/modules/quota/DeprecatedStorageInfo.cpp
|
| +++ b/third_party/WebKit/Source/modules/quota/DeprecatedStorageInfo.cpp
|
| @@ -54,8 +54,7 @@ void DeprecatedStorageInfo::queryUsageAndQuota(
|
| DeprecatedStorageQuota* storageQuota = getStorageQuota(storageType);
|
| if (!storageQuota) {
|
| // Unknown storage type is requested.
|
| - TaskRunnerHelper::get(TaskType::MiscPlatformAPI,
|
| - scriptState->getExecutionContext())
|
| + TaskRunnerHelper::get(TaskType::MiscPlatformAPI, scriptState)
|
| ->postTask(BLINK_FROM_HERE, StorageErrorCallback::createSameThreadTask(
|
| errorCallback, NotSupportedError));
|
| return;
|
| @@ -73,8 +72,7 @@ void DeprecatedStorageInfo::requestQuota(ScriptState* scriptState,
|
| DeprecatedStorageQuota* storageQuota = getStorageQuota(storageType);
|
| if (!storageQuota) {
|
| // Unknown storage type is requested.
|
| - TaskRunnerHelper::get(TaskType::MiscPlatformAPI,
|
| - scriptState->getExecutionContext())
|
| + TaskRunnerHelper::get(TaskType::MiscPlatformAPI, scriptState)
|
| ->postTask(BLINK_FROM_HERE, StorageErrorCallback::createSameThreadTask(
|
| errorCallback, NotSupportedError));
|
| return;
|
|
|