Searched refs:StorageErrorCallback (Results 1 - 8 of 8) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/Modules/quota/
H A DStorageErrorCallback.idl33 ] callback interface StorageErrorCallback {
H A DStorageErrorCallback.h45 class StorageErrorCallback : public RefCounted<StorageErrorCallback> { class in namespace:WebCore
47 virtual ~StorageErrorCallback() { }
52 CallbackTask(PassRefPtr<StorageErrorCallback>, ExceptionCode);
55 RefPtr<StorageErrorCallback> m_callback;
H A DStorageQuota.idl31 [CallWith=ScriptExecutionContext] void queryUsageAndQuota(StorageUsageCallback usageCallback, optional StorageErrorCallback errorCallback);
32 [CallWith=ScriptExecutionContext] void requestQuota(unsigned long long newQuotaInBytes, optional StorageQuotaCallback quotaCallback, optional StorageErrorCallback errorCallback);
H A DStorageErrorCallback.cpp35 #include "StorageErrorCallback.h"
42 StorageErrorCallback::CallbackTask::CallbackTask(PassRefPtr<StorageErrorCallback> callback, ExceptionCode ec)
H A DStorageInfo.idl34 [CallWith=ScriptExecutionContext] void queryUsageAndQuota(unsigned short storageType, optional StorageUsageCallback usageCallback, optional StorageErrorCallback errorCallback);
35 [CallWith=ScriptExecutionContext] void requestQuota(unsigned short storageType, unsigned long long newQuotaInBytes, optional StorageQuotaCallback quotaCallback, optional StorageErrorCallback errorCallback);
H A DStorageInfo.h43 class StorageErrorCallback;
60 void queryUsageAndQuota(ScriptExecutionContext*, int storageType, PassRefPtr<StorageUsageCallback>, PassRefPtr<StorageErrorCallback>);
62 void requestQuota(ScriptExecutionContext*, int storageType, unsigned long long newQuotaInBytes, PassRefPtr<StorageQuotaCallback>, PassRefPtr<StorageErrorCallback>);
H A DStorageQuota.h42 class StorageErrorCallback;
58 void queryUsageAndQuota(ScriptExecutionContext*, PassRefPtr<StorageUsageCallback>, PassRefPtr<StorageErrorCallback>);
60 void requestQuota(ScriptExecutionContext*, unsigned long long newQuotaInBytes, PassRefPtr<StorageQuotaCallback>, PassRefPtr<StorageErrorCallback>);
H A DStorageInfo.cpp40 #include "StorageErrorCallback.h"
55 void StorageInfo::queryUsageAndQuota(ScriptExecutionContext* scriptExecutionContext, int storageType, PassRefPtr<StorageUsageCallback> successCallback, PassRefPtr<StorageErrorCallback> errorCallback)
61 scriptExecutionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NOT_SUPPORTED_ERR));
67 void StorageInfo::requestQuota(ScriptExecutionContext* scriptExecutionContext, int storageType, unsigned long long newQuotaInBytes, PassRefPtr<StorageQuotaCallback> successCallback, PassRefPtr<StorageErrorCallback> errorCallback)
73 scriptExecutionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NOT_SUPPORTED_ERR));

Completed in 175 milliseconds