Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1197)

Unified Diff: Source/modules/quota/StorageQuota.cpp

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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()
« no previous file with comments | « Source/modules/mediastream/WebMediaStreamTrackSourcesRequest.cpp ('k') | Source/modules/quota/WebStorageQuotaCallbacksImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698