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

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

Issue 1751833002: Use string16 for cache_name in the back end of CacheStorage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add comment and test 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
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 77435096db24ebe8a1ee9b4859e4322351ea4591..bdd71461d70156846a7eec6dee07983d56d2e03b 100644
--- a/content/browser/cache_storage/cache_storage_dispatcher_host.h
+++ b/content/browser/cache_storage/cache_storage_dispatcher_host.h
@@ -97,10 +97,11 @@ class CONTENT_EXPORT CacheStorageDispatcherHost : public BrowserMessageFilter {
int request_id,
bool deleted,
CacheStorageError error);
- void OnCacheStorageKeysCallback(int thread_id,
- int request_id,
- const std::vector<std::string>& strings,
- CacheStorageError error);
+ void OnCacheStorageKeysCallback(
+ int thread_id,
+ int request_id,
+ const std::vector<base::string16>& cache_names,
+ CacheStorageError error);
void OnCacheStorageMatchCallback(
int thread_id,
int request_id,
« no previous file with comments | « content/browser/cache_storage/cache_storage.proto ('k') | content/browser/cache_storage/cache_storage_dispatcher_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698