OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:WebStorageQuotaCallbacksImpl
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/quota/
WebStorageQuotaCallbacksImpl.cpp
32
#include "modules/quota/
WebStorageQuotaCallbacksImpl
.h"
39
WebStorageQuotaCallbacksImpl
::
WebStorageQuotaCallbacksImpl
(PassRefPtr<StorageUsageCallback> usageCallback, PassRefPtr<StorageErrorCallback> errorCallback)
45
WebStorageQuotaCallbacksImpl
::
WebStorageQuotaCallbacksImpl
(PassRefPtr<StorageQuotaCallback> quotaCallback, PassRefPtr<StorageErrorCallback> errorCallback)
51
WebStorageQuotaCallbacksImpl
::~
WebStorageQuotaCallbacksImpl
()
55
void
WebStorageQuotaCallbacksImpl
::didQueryStorageUsageAndQuota(unsigned long long usageInBytes, unsigned long long quotaInBytes)
57
OwnPtr<
WebStorageQuotaCallbacksImpl
> deleter = adoptPtr(this);
62
void
WebStorageQuotaCallbacksImpl
::didGrantStorageQuota(unsigned long long grantedQuotaInBytes
[
all
...]
WebStorageQuotaCallbacksImpl.h
44
class
WebStorageQuotaCallbacksImpl
: public WebKit::WebStorageQuotaCallbacks {
47
static
WebStorageQuotaCallbacksImpl
* createLeakedPtr(PassRefPtr<StorageUsageCallback> success, PassRefPtr<StorageErrorCallback> error)
49
OwnPtr<
WebStorageQuotaCallbacksImpl
> callbacks = adoptPtr(new
WebStorageQuotaCallbacksImpl
(success, error));
53
static
WebStorageQuotaCallbacksImpl
* createLeakedPtr(PassRefPtr<StorageQuotaCallback> success, PassRefPtr<StorageErrorCallback> error)
55
OwnPtr<
WebStorageQuotaCallbacksImpl
> callbacks = adoptPtr(new
WebStorageQuotaCallbacksImpl
(success, error));
59
virtual ~
WebStorageQuotaCallbacksImpl
();
66
WebStorageQuotaCallbacksImpl
(PassRefPtr<StorageUsageCallback>, PassRefPtr<StorageErrorCallback>);
67
WebStorageQuotaCallbacksImpl
(PassRefPtr<StorageQuotaCallback>, PassRefPtr<StorageErrorCallback>)
[
all
...]
Completed in 62 milliseconds