| Index: third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.cpp
|
| diff --git a/third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.cpp b/third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.cpp
|
| index 5c634003526a8132d5e34d236c7d47c63d732085..82d043e2f2695002104d5f902dd3592dd175dbcf 100644
|
| --- a/third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.cpp
|
| +++ b/third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.cpp
|
| @@ -59,13 +59,13 @@ void DeprecatedStorageQuota::queryUsageAndQuota(ExecutionContext* executionConte
|
| WebStorageQuotaType storageType = static_cast<WebStorageQuotaType>(m_type);
|
| if (storageType != WebStorageQuotaTypeTemporary && storageType != WebStorageQuotaTypePersistent) {
|
| // Unknown storage type is requested.
|
| - executionContext->postTask(FROM_HERE, StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
|
| + executionContext->postTask(BLINK_FROM_HERE, StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
|
| return;
|
| }
|
|
|
| SecurityOrigin* securityOrigin = executionContext->securityOrigin();
|
| if (securityOrigin->isUnique()) {
|
| - executionContext->postTask(FROM_HERE, StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
|
| + executionContext->postTask(BLINK_FROM_HERE, StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
|
| return;
|
| }
|
|
|
| @@ -81,13 +81,13 @@ void DeprecatedStorageQuota::requestQuota(ExecutionContext* executionContext, un
|
| WebStorageQuotaType storageType = static_cast<WebStorageQuotaType>(m_type);
|
| if (storageType != WebStorageQuotaTypeTemporary && storageType != WebStorageQuotaTypePersistent) {
|
| // Unknown storage type is requested.
|
| - executionContext->postTask(FROM_HERE, StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
|
| + executionContext->postTask(BLINK_FROM_HERE, StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
|
| return;
|
| }
|
|
|
| StorageQuotaClient* client = StorageQuotaClient::from(executionContext);
|
| if (!client) {
|
| - executionContext->postTask(FROM_HERE, StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
|
| + executionContext->postTask(BLINK_FROM_HERE, StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
|
| return;
|
| }
|
|
|
|
|