| Index: content/browser/cache_storage/cache_storage_dispatcher_host.h
|
| diff --git a/content/browser/cache_storage/cache_storage_dispatcher_host.h b/content/browser/cache_storage/cache_storage_dispatcher_host.h
|
| index 8691a9cfde9034bcb2a352dae824b7a8739f1509..6b452948c137759882a65a278e5d998dba42c573 100644
|
| --- a/content/browser/cache_storage/cache_storage_dispatcher_host.h
|
| +++ b/content/browser/cache_storage/cache_storage_dispatcher_host.h
|
| @@ -113,6 +113,20 @@ class CONTENT_EXPORT CacheStorageDispatcherHost : public BrowserMessageFilter {
|
| CacheStorageError error,
|
| scoped_ptr<ServiceWorkerResponse> response,
|
| scoped_ptr<storage::BlobDataHandle> blob_data_handle);
|
| + void OnCacheMatchAllCallbackAdapter(
|
| + int thread_id,
|
| + int request_id,
|
| + const scoped_refptr<CacheStorageCache>& cache,
|
| + CacheStorageError error,
|
| + scoped_ptr<ServiceWorkerResponse> response,
|
| + scoped_ptr<storage::BlobDataHandle> blob_data_handle);
|
| + void OnCacheMatchAllCallback(
|
| + int thread_id,
|
| + int request_id,
|
| + const scoped_refptr<CacheStorageCache>& cache,
|
| + CacheStorageError error,
|
| + const std::vector<ServiceWorkerResponse>& responses,
|
| + ScopedVector<storage::BlobDataHandle> blob_data_handles);
|
| void OnCacheMatchAll(int thread_id,
|
| int request_id,
|
| int cache_id,
|
| @@ -138,7 +152,7 @@ class CONTENT_EXPORT CacheStorageDispatcherHost : public BrowserMessageFilter {
|
| // renderer.
|
| void StoreBlobDataHandle(
|
| scoped_ptr<storage::BlobDataHandle> blob_data_handle);
|
| - void DropBlobDataHandle(std::string uuid);
|
| + void DropBlobDataHandle(const std::string& uuid);
|
|
|
| IDToCacheMap id_to_cache_map_;
|
| CacheID next_cache_id_ = 0;
|
|
|