| Index: Source/modules/quota/DeprecatedStorageInfo.cpp
|
| diff --git a/Source/modules/quota/DeprecatedStorageInfo.cpp b/Source/modules/quota/DeprecatedStorageInfo.cpp
|
| index c5a60a1b332c4897d17e6f9146d8d69990ee277e..7ecd427cad501ed4325368481e30e65d8f0ec269 100644
|
| --- a/Source/modules/quota/DeprecatedStorageInfo.cpp
|
| +++ b/Source/modules/quota/DeprecatedStorageInfo.cpp
|
| @@ -38,6 +38,7 @@
|
| #include "modules/quota/StorageErrorCallback.h"
|
| #include "modules/quota/StorageQuotaCallback.h"
|
| #include "modules/quota/StorageUsageCallback.h"
|
| +#include "public/platform/WebTraceLocation.h"
|
|
|
| namespace blink {
|
|
|
| @@ -51,7 +52,7 @@ void DeprecatedStorageInfo::queryUsageAndQuota(ExecutionContext* executionContex
|
| DeprecatedStorageQuota* storageQuota = getStorageQuota(storageType);
|
| if (!storageQuota) {
|
| // Unknown storage type is requested.
|
| - executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
|
| + executionContext->postTask(FROM_HERE, StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
|
| return;
|
| }
|
| storageQuota->queryUsageAndQuota(executionContext, successCallback, errorCallback);
|
| @@ -63,7 +64,7 @@ void DeprecatedStorageInfo::requestQuota(ExecutionContext* executionContext, int
|
| DeprecatedStorageQuota* storageQuota = getStorageQuota(storageType);
|
| if (!storageQuota) {
|
| // Unknown storage type is requested.
|
| - executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
|
| + executionContext->postTask(FROM_HERE, StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
|
| return;
|
| }
|
| storageQuota->requestQuota(executionContext, newQuotaInBytes, successCallback, errorCallback);
|
|
|