| Index: Source/modules/quota/StorageQuota.cpp
|
| diff --git a/Source/modules/quota/StorageQuota.cpp b/Source/modules/quota/StorageQuota.cpp
|
| index a715cef961f500124e90c0c64bb96cb20659d6fb..9739205187b57f7dc5a2e1624b06b4dc9ad024c7 100644
|
| --- a/Source/modules/quota/StorageQuota.cpp
|
| +++ b/Source/modules/quota/StorageQuota.cpp
|
| @@ -54,8 +54,8 @@ void StorageQuota::queryUsageAndQuota(ExecutionContext* executionContext, PassRe
|
| {
|
| ASSERT(executionContext);
|
|
|
| - WebKit::WebStorageQuotaType storageType = static_cast<WebKit::WebStorageQuotaType>(m_type);
|
| - if (storageType != WebKit::WebStorageQuotaTypeTemporary && storageType != WebKit::WebStorageQuotaTypePersistent) {
|
| + blink::WebStorageQuotaType storageType = static_cast<blink::WebStorageQuotaType>(m_type);
|
| + if (storageType != blink::WebStorageQuotaTypeTemporary && storageType != blink::WebStorageQuotaTypePersistent) {
|
| // Unknown storage type is requested.
|
| executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
|
| return;
|
| @@ -68,7 +68,7 @@ void StorageQuota::queryUsageAndQuota(ExecutionContext* executionContext, PassRe
|
| }
|
|
|
| KURL storagePartition = KURL(KURL(), securityOrigin->toString());
|
| - WebKit::Platform::current()->queryStorageUsageAndQuota(storagePartition, storageType, WebStorageQuotaCallbacksImpl::createLeakedPtr(successCallback, errorCallback));
|
| + blink::Platform::current()->queryStorageUsageAndQuota(storagePartition, storageType, WebStorageQuotaCallbacksImpl::createLeakedPtr(successCallback, errorCallback));
|
| }
|
|
|
| StorageQuota::~StorageQuota()
|
|
|