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
(PassOwnPtr<StorageUsageCallback> usageCallback, PassOwnPtr<StorageErrorCallback> errorCallback)
45
WebStorageQuotaCallbacksImpl
::
WebStorageQuotaCallbacksImpl
(PassOwnPtr<StorageQuotaCallback> quotaCallback, PassOwnPtr<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 blink::WebStorageQuotaCallbacks {
47
static
WebStorageQuotaCallbacksImpl
* createLeakedPtr(PassOwnPtr<StorageUsageCallback> success, PassOwnPtr<StorageErrorCallback> error)
49
OwnPtr<
WebStorageQuotaCallbacksImpl
> callbacks = adoptPtr(new
WebStorageQuotaCallbacksImpl
(success, error));
53
static
WebStorageQuotaCallbacksImpl
* createLeakedPtr(PassOwnPtr<StorageQuotaCallback> success, PassOwnPtr<StorageErrorCallback> error)
55
OwnPtr<
WebStorageQuotaCallbacksImpl
> callbacks = adoptPtr(new
WebStorageQuotaCallbacksImpl
(success, error));
59
virtual ~
WebStorageQuotaCallbacksImpl
();
66
WebStorageQuotaCallbacksImpl
(PassOwnPtr<StorageUsageCallback>, PassOwnPtr<StorageErrorCallback>);
67
WebStorageQuotaCallbacksImpl
(PassOwnPtr<StorageQuotaCallback>, PassOwnPtr<StorageErrorCallback>)
[
all
...]
Completed in 607 milliseconds