| Index: content/browser/cache_storage/cache_storage_cache.h
|
| diff --git a/content/browser/cache_storage/cache_storage_cache.h b/content/browser/cache_storage/cache_storage_cache.h
|
| index a9dcd4cccafcb0c2c74096d621c212bb8b4e4831..58ded2e1d2ecca61b9ee486f7e34d0b4fd35f751 100644
|
| --- a/content/browser/cache_storage/cache_storage_cache.h
|
| +++ b/content/browser/cache_storage/cache_storage_cache.h
|
| @@ -18,6 +18,7 @@
|
| #include "content/common/cache_storage/cache_storage_types.h"
|
| #include "content/common/service_worker/service_worker_types.h"
|
| #include "net/disk_cache/disk_cache.h"
|
| +#include "storage/common/quota/quota_status_code.h"
|
|
|
| namespace net {
|
| class URLRequestContextGetter;
|
| @@ -190,6 +191,10 @@ class CONTENT_EXPORT CacheStorageCache
|
| void PutImpl(scoped_ptr<PutContext> put_context);
|
| void PutDidDelete(scoped_ptr<PutContext> put_context,
|
| CacheStorageError delete_error);
|
| + void PutDidGetUsageAndQuota(scoped_ptr<PutContext> put_context,
|
| + storage::QuotaStatusCode status_code,
|
| + int64_t usage,
|
| + int64_t quota);
|
| void PutDidCreateEntry(scoped_ptr<disk_cache::Entry*> entry_ptr,
|
| scoped_ptr<PutContext> put_context,
|
| int rv);
|
|
|