HomeSort by relevance Sort by last modified time
    Searched refs:storageType (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/quota/
StorageInfo.h 59 void queryUsageAndQuota(ScriptExecutionContext*, int storageType, PassRefPtr<StorageUsageCallback>, PassRefPtr<StorageErrorCallback>);
61 void requestQuota(ScriptExecutionContext*, int storageType, unsigned long long newQuotaInBytes, PassRefPtr<StorageQuotaCallback>, PassRefPtr<StorageErrorCallback>);
68 StorageQuota* getStorageQuota(int storageType);
StorageInfo.idl 32 [CallWith=ScriptExecutionContext] void queryUsageAndQuota(unsigned short storageType, optional StorageUsageCallback usageCallback, optional StorageErrorCallback errorCallback);
33 [CallWith=ScriptExecutionContext] void requestQuota(unsigned short storageType, unsigned long long newQuotaInBytes, optional StorageQuotaCallback quotaCallback, optional StorageErrorCallback errorCallback);
StorageQuota.cpp 57 WebKit::WebStorageQuotaType storageType = static_cast<WebKit::WebStorageQuotaType>(m_type);
58 if (storageType != WebKit::WebStorageQuotaTypeTemporary && storageType != WebKit::WebStorageQuotaTypePersistent) {
71 WebKit::Platform::current()->queryStorageUsageAndQuota(storagePartition, storageType, WebStorageQuotaCallbacksImpl::createLeakedPtr(successCallback, errorCallback));
StorageInfo.cpp 54 void StorageInfo::queryUsageAndQuota(ScriptExecutionContext* scriptExecutionContext, int storageType, PassRefPtr<StorageUsageCallback> successCallback, PassRefPtr<StorageErrorCallback> errorCallback)
57 StorageQuota* storageQuota = getStorageQuota(storageType);
66 void StorageInfo::requestQuota(ScriptExecutionContext* scriptExecutionContext, int storageType, unsigned long long newQuotaInBytes, PassRefPtr<StorageQuotaCallback> successCallback, PassRefPtr<StorageErrorCallback> errorCallback)
69 StorageQuota* storageQuota = getStorageQuota(storageType);
78 StorageQuota* StorageInfo::getStorageQuota(int storageType)
80 switch (storageType) {
  /external/chromium_org/third_party/WebKit/Source/web/
StorageQuotaChromium.cpp 57 WebStorageQuotaType storageType = static_cast<WebStorageQuotaType>(m_type);
58 if (storageType != WebStorageQuotaTypeTemporary && storageType != WebStorageQuotaTypePersistent) {
66 webFrame->client()->requestStorageQuota(webFrame, storageType, newQuotaInBytes, WebStorageQuotaCallbacksImpl::createLeakedPtr(successCallback, errorCallback));
WebDragData.cpp 77 item.storageType = Item::StorageTypeString;
82 item.storageType = Item::StorageTypeBinaryData;
85 item.storageType = Item::StorageTypeFilename;
114 switch (item.storageType) {
StorageAreaProxy.cpp 53 StorageAreaProxy::StorageAreaProxy(PassOwnPtr<WebKit::WebStorageArea> storageArea, StorageType storageType)
55 , m_storageType(storageType)
  /external/chromium_org/third_party/WebKit/public/platform/
WebDragData.h 54 enum StorageType {
65 StorageType storageType;
67 // Only valid when storageType == StorageTypeString.
71 // Only valid when storageType == StorageTypeFilename.
75 // Only valid when storageType == StorageTypeBinaryData.
79 // Filename when storageType == StorageTypeBinaryData.
  /external/chromium_org/content/renderer/
drop_data_builder.cc 27 switch (item.storageType) {
render_view_impl.cc 723 item.storageType = WebDragData::Item::StorageTypeString;
733 item.storageType = WebDragData::Item::StorageTypeString;
742 item.storageType = WebDragData::Item::StorageTypeString;
754 item.storageType = WebDragData::Item::StorageTypeFilename;
765 item.storageType = WebDragData::Item::StorageTypeString;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMStorageAgent.cpp 206 void InspectorDOMStorageAgent::didDispatchDOMStorageEvent(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin)
211 RefPtr<TypeBuilder::DOMStorage::StorageId> id = storageId(securityOrigin, storageType == LocalStorage);
InspectorInstrumentation.idl 373 void didDispatchDOMStorageEvent(Page* page, const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin);
  /external/chromium_org/webkit/support/
mock_webclipboard_impl.cc 178 switch (item.storageType) {
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
EventSender.cpp 383 if (items[i].storageType == WebDragData::Item::StorageTypeBinaryData) {
    [all...]

Completed in 2533 milliseconds