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

Unified Diff: content/common/cache_storage/cache_storage_messages.h

Issue 1768063002: Introduce String::fromUTF8Lenient() and use it for cache_name in CacheStorage API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: incorporated jsbell's comment Created 4 years, 9 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/common/cache_storage/cache_storage_messages.h
diff --git a/content/common/cache_storage/cache_storage_messages.h b/content/common/cache_storage/cache_storage_messages.h
index 277f960ee6e9ec08caea2aad4b4c6a49c9ceb36d..aaf00439875b6621f1d88a46c2266b46e6f54755 100644
--- a/content/common/cache_storage/cache_storage_messages.h
+++ b/content/common/cache_storage/cache_storage_messages.h
@@ -52,19 +52,19 @@ IPC_MESSAGE_CONTROL4(CacheStorageHostMsg_CacheStorageHas,
int /* thread_id */,
int /* request_id */,
GURL /* origin */,
- base::string16 /* fetch_store_name */)
+ std::string /* fetch_store_name */)
IPC_MESSAGE_CONTROL4(CacheStorageHostMsg_CacheStorageOpen,
int /* thread_id */,
int /* request_id */,
GURL /* origin */,
- base::string16 /* fetch_store_name */)
+ std::string /* fetch_store_name */)
IPC_MESSAGE_CONTROL4(CacheStorageHostMsg_CacheStorageDelete,
int /* thread_id */,
int /* request_id */,
GURL /* origin */,
- base::string16 /* fetch_store_name */)
+ std::string /* fetch_store_name */)
IPC_MESSAGE_CONTROL3(CacheStorageHostMsg_CacheStorageKeys,
int /* thread_id */,
@@ -133,7 +133,7 @@ IPC_MESSAGE_CONTROL2(CacheStorageMsg_CacheStorageDeleteSuccess,
IPC_MESSAGE_CONTROL3(CacheStorageMsg_CacheStorageKeysSuccess,
int /* thread_id */,
int /* request_id */,
- std::vector<base::string16> /* keys */)
+ std::vector<std::string> /* keys */)
IPC_MESSAGE_CONTROL3(CacheStorageMsg_CacheStorageMatchSuccess,
int /* thread_id */,
int /* request_id */,
« no previous file with comments | « content/browser/cache_storage/cache_storage_dispatcher_host.cc ('k') | content/common/cache_storage/cache_storage_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698