| 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..83ef51a222e68094036401762f3c33a82f58c69f 100644
|
| --- a/content/browser/cache_storage/cache_storage_cache.h
|
| +++ b/content/browser/cache_storage/cache_storage_cache.h
|
| @@ -77,6 +77,8 @@ class CONTENT_EXPORT CacheStorageCache
|
| // Returns CACHE_STORAGE_OK and all responses in this cache. If there are no
|
| // responses, returns CACHE_STORAGE_OK and an empty vector.
|
| void MatchAll(const ResponsesCallback& callback);
|
| + void MatchAll(scoped_ptr<ServiceWorkerFetchRequest> request,
|
| + const ResponsesCallback& callback);
|
|
|
| // Runs given batch operations. This corresponds to the Batch Cache Operations
|
| // algorithm in the spec.
|
| @@ -171,8 +173,10 @@ class CONTENT_EXPORT CacheStorageCache
|
| scoped_ptr<CacheMetadata> headers);
|
|
|
| // MatchAll callbacks
|
| - void MatchAllImpl(const ResponsesCallback& callback);
|
| + void MatchAllImpl(scoped_ptr<ServiceWorkerFetchRequest> request,
|
| + const ResponsesCallback& callback);
|
| void MatchAllDidOpenAllEntries(
|
| + scoped_ptr<ServiceWorkerFetchRequest> request,
|
| const ResponsesCallback& callback,
|
| scoped_ptr<OpenAllEntriesContext> entries_context,
|
| CacheStorageError error);
|
|
|