Index: Source/modules/quota/DeprecatedStorageQuota.cpp |
diff --git a/Source/modules/quota/DeprecatedStorageQuota.cpp b/Source/modules/quota/DeprecatedStorageQuota.cpp |
index 543385cd0d2b95f091362792df82b8eadc42401b..82822108eb190ac3934a51e286fb323239372184 100644 |
--- a/Source/modules/quota/DeprecatedStorageQuota.cpp |
+++ b/Source/modules/quota/DeprecatedStorageQuota.cpp |
@@ -51,7 +51,7 @@ DeprecatedStorageQuota::DeprecatedStorageQuota(Type type) |
{ |
} |
-void DeprecatedStorageQuota::queryUsageAndQuota(ExecutionContext* executionContext, PassOwnPtrWillBeRawPtr<StorageUsageCallback> successCallback, PassOwnPtrWillBeRawPtr<StorageErrorCallback> errorCallback) |
+void DeprecatedStorageQuota::queryUsageAndQuota(ExecutionContext* executionContext, StorageUsageCallback* successCallback, StorageErrorCallback* errorCallback) |
{ |
ASSERT(executionContext); |
@@ -73,7 +73,7 @@ void DeprecatedStorageQuota::queryUsageAndQuota(ExecutionContext* executionConte |
Platform::current()->queryStorageUsageAndQuota(storagePartition, storageType, callbacks.release()); |
} |
-void DeprecatedStorageQuota::requestQuota(ExecutionContext* executionContext, unsigned long long newQuotaInBytes, PassOwnPtrWillBeRawPtr<StorageQuotaCallback> successCallback, PassOwnPtrWillBeRawPtr<StorageErrorCallback> errorCallback) |
+void DeprecatedStorageQuota::requestQuota(ExecutionContext* executionContext, unsigned long long newQuotaInBytes, StorageQuotaCallback* successCallback, StorageErrorCallback* errorCallback) |
{ |
ASSERT(executionContext); |