| 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 b96612fee5cb2a600654338a42ed5dc5eade52fa..dccef2a6b703d09726eda474ee52aaccd659b2d9 100644
|
| --- a/content/browser/cache_storage/cache_storage_cache.h
|
| +++ b/content/browser/cache_storage/cache_storage_cache.h
|
| @@ -76,9 +76,11 @@ class CONTENT_EXPORT CacheStorageCache
|
| void Match(scoped_ptr<ServiceWorkerFetchRequest> request,
|
| const ResponseCallback& callback);
|
|
|
| - // 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);
|
| + // Returns CACHE_STORAGE_OK and matched responses in this cache. If there are
|
| + // no responses, returns CACHE_STORAGE_OK and an empty vector.
|
| + void MatchAll(scoped_ptr<ServiceWorkerFetchRequest> request,
|
| + const CacheStorageCacheQueryParams& match_params,
|
| + const ResponsesCallback& callback);
|
|
|
| // Runs given batch operations. This corresponds to the Batch Cache Operations
|
| // algorithm in the spec.
|
| @@ -173,9 +175,9 @@ class CONTENT_EXPORT CacheStorageCache
|
| scoped_ptr<CacheMetadata> headers);
|
|
|
| // MatchAll callbacks
|
| - void MatchAllImpl(const ResponsesCallback& callback);
|
| + void MatchAllImpl(scoped_ptr<MatchAllContext> context);
|
| void MatchAllDidOpenAllEntries(
|
| - const ResponsesCallback& callback,
|
| + scoped_ptr<MatchAllContext> context,
|
| scoped_ptr<OpenAllEntriesContext> entries_context,
|
| CacheStorageError error);
|
| void MatchAllProcessNextEntry(scoped_ptr<MatchAllContext> context,
|
|
|