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