diff options
Diffstat (limited to 'Source/WebCore/Modules/quota/StorageInfo.idl')
-rw-r--r-- | Source/WebCore/Modules/quota/StorageInfo.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/Modules/quota/StorageInfo.idl b/Source/WebCore/Modules/quota/StorageInfo.idl index e6157a0d3..062638123 100644 --- a/Source/WebCore/Modules/quota/StorageInfo.idl +++ b/Source/WebCore/Modules/quota/StorageInfo.idl @@ -31,6 +31,6 @@ const unsigned short TEMPORARY = 0; const unsigned short PERSISTENT = 1; - [CallWith=ScriptExecutionContext] void queryUsageAndQuota(unsigned short storageType, optional StorageUsageCallback usageCallback, optional StorageErrorCallback errorCallback); - [CallWith=ScriptExecutionContext] void requestQuota(unsigned short storageType, unsigned long long newQuotaInBytes, optional StorageQuotaCallback quotaCallback, optional StorageErrorCallback errorCallback); + [CallWith=ScriptExecutionContext] void queryUsageAndQuota(unsigned short storageType, optional StorageUsageCallback? usageCallback, optional StorageErrorCallback? errorCallback); + [CallWith=ScriptExecutionContext] void requestQuota(unsigned short storageType, unsigned long long newQuotaInBytes, optional StorageQuotaCallback? quotaCallback, optional StorageErrorCallback? errorCallback); }; |