Searched refs:newQuotaInBytes (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/quota/
H A DDeprecatedStorageQuota.idl31 [CallWith=ExecutionContext] void requestQuota(unsigned long long newQuotaInBytes, optional StorageQuotaCallback quotaCallback, optional StorageErrorCallback errorCallback);
H A DStorageQuotaClient.h54 virtual void requestQuota(ExecutionContext*, WebStorageQuotaType, unsigned long long newQuotaInBytes, StorageQuotaCallback*, StorageErrorCallback*) = 0;
55 virtual ScriptPromise requestPersistentQuota(ScriptState*, unsigned long long newQuotaInBytes) = 0;
H A DDeprecatedStorageInfo.idl34 [CallWith=ExecutionContext] void requestQuota(unsigned short storageType, unsigned long long newQuotaInBytes, optional StorageQuotaCallback quotaCallback, optional StorageErrorCallback errorCallback);
H A DDeprecatedStorageInfo.h61 void requestQuota(ExecutionContext*, int storageType, unsigned long long newQuotaInBytes, StorageQuotaCallback*, StorageErrorCallback*);
H A DDeprecatedStorageQuota.h60 void requestQuota(ExecutionContext*, unsigned long long newQuotaInBytes, StorageQuotaCallback*, StorageErrorCallback*);
H A DDeprecatedStorageInfo.cpp60 void DeprecatedStorageInfo::requestQuota(ExecutionContext* executionContext, int storageType, unsigned long long newQuotaInBytes, StorageQuotaCallback* successCallback, StorageErrorCallback* errorCallback) argument
69 storageQuota->requestQuota(executionContext, newQuotaInBytes, successCallback, errorCallback);
H A DDeprecatedStorageQuota.cpp76 void DeprecatedStorageQuota::requestQuota(ExecutionContext* executionContext, unsigned long long newQuotaInBytes, StorageQuotaCallback* successCallback, StorageErrorCallback* errorCallback) argument
93 client->requestQuota(executionContext, storageType, newQuotaInBytes, successCallback, errorCallback);
/external/chromium_org/third_party/WebKit/Source/web/
H A DStorageQuotaClientImpl.h46 virtual void requestQuota(ExecutionContext*, WebStorageQuotaType, unsigned long long newQuotaInBytes, StorageQuotaCallback*, StorageErrorCallback*) OVERRIDE;
47 virtual ScriptPromise requestPersistentQuota(ScriptState*, unsigned long long newQuotaInBytes) OVERRIDE;
H A DStorageQuotaClientImpl.cpp62 void StorageQuotaClientImpl::requestQuota(ExecutionContext* executionContext, WebStorageQuotaType storageType, unsigned long long newQuotaInBytes, StorageQuotaCallback* successCallback, StorageErrorCallback* errorCallback) argument
70 webFrame->client()->requestStorageQuota(webFrame, storageType, newQuotaInBytes, callbacks.release());
77 ScriptPromise StorageQuotaClientImpl::requestPersistentQuota(ScriptState* scriptState, unsigned long long newQuotaInBytes) argument
86 webFrame->client()->requestStorageQuota(webFrame, WebStorageQuotaTypePersistent, newQuotaInBytes, callbacks.release());
/external/chromium_org/third_party/WebKit/public/web/
H A DWebFrameClient.h476 // |newQuotaInBytes| indicates how much storage space (in bytes) the
485 unsigned long long newQuotaInBytes,
483 requestStorageQuota( WebLocalFrame*, WebStorageQuotaType, unsigned long long newQuotaInBytes, WebStorageQuotaCallbacks) argument

Completed in 183 milliseconds