| Index: Source/modules/quota/DeprecatedStorageInfo.cpp
|
| diff --git a/Source/modules/quota/DeprecatedStorageInfo.cpp b/Source/modules/quota/DeprecatedStorageInfo.cpp
|
| index 242161649595065700776ff2825a3cf7e54b1b00..cb29f42c582b5de38eb9570901fedf0c21194a56 100644
|
| --- a/Source/modules/quota/DeprecatedStorageInfo.cpp
|
| +++ b/Source/modules/quota/DeprecatedStorageInfo.cpp
|
| @@ -45,7 +45,7 @@ DeprecatedStorageInfo::DeprecatedStorageInfo()
|
| {
|
| }
|
|
|
| -void DeprecatedStorageInfo::queryUsageAndQuota(ExecutionContext* executionContext, int storageType, PassOwnPtrWillBeRawPtr<StorageUsageCallback> successCallback, PassOwnPtrWillBeRawPtr<StorageErrorCallback> errorCallback)
|
| +void DeprecatedStorageInfo::queryUsageAndQuota(ExecutionContext* executionContext, int storageType, StorageUsageCallback* successCallback, StorageErrorCallback* errorCallback)
|
| {
|
| // Dispatching the request to DeprecatedStorageQuota, as this interface is deprecated in favor of DeprecatedStorageQuota.
|
| DeprecatedStorageQuota* storageQuota = getStorageQuota(storageType);
|
| @@ -57,7 +57,7 @@ void DeprecatedStorageInfo::queryUsageAndQuota(ExecutionContext* executionContex
|
| storageQuota->queryUsageAndQuota(executionContext, successCallback, errorCallback);
|
| }
|
|
|
| -void DeprecatedStorageInfo::requestQuota(ExecutionContext* executionContext, int storageType, unsigned long long newQuotaInBytes, PassOwnPtrWillBeRawPtr<StorageQuotaCallback> successCallback, PassOwnPtrWillBeRawPtr<StorageErrorCallback> errorCallback)
|
| +void DeprecatedStorageInfo::requestQuota(ExecutionContext* executionContext, int storageType, unsigned long long newQuotaInBytes, StorageQuotaCallback* successCallback, StorageErrorCallback* errorCallback)
|
| {
|
| // Dispatching the request to DeprecatedStorageQuota, as this interface is deprecated in favor of DeprecatedStorageQuota.
|
| DeprecatedStorageQuota* storageQuota = getStorageQuota(storageType);
|
|
|