Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Unified Diff: content/browser/cache_storage/cache_storage_cache.h

Issue 1578363009: CacheStorage: Add ignoreSearch option to cache.matchAll(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/browser/cache_storage/cache_storage_cache.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « no previous file | content/browser/cache_storage/cache_storage_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698