| 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 3ae680b9961b7e9498d50338c2add9cc018bb04c..ccc4a05bb90b385744a8273743392653e10a1f1a 100644
|
| --- a/content/browser/cache_storage/cache_storage_dispatcher_host.h
|
| +++ b/content/browser/cache_storage/cache_storage_dispatcher_host.h
|
| @@ -50,15 +50,15 @@ class CONTENT_EXPORT CacheStorageDispatcherHost : public BrowserMessageFilter {
|
| void OnCacheStorageHas(int thread_id,
|
| int request_id,
|
| const GURL& origin,
|
| - const base::string16& cache_name);
|
| + const std::string& cache_name);
|
| void OnCacheStorageOpen(int thread_id,
|
| int request_id,
|
| const GURL& origin,
|
| - const base::string16& cache_name);
|
| + const std::string& cache_name);
|
| void OnCacheStorageDelete(int thread_id,
|
| int request_id,
|
| const GURL& origin,
|
| - const base::string16& cache_name);
|
| + const std::string& cache_name);
|
| void OnCacheStorageKeys(int thread_id, int request_id, const GURL& origin);
|
| void OnCacheStorageMatch(int thread_id,
|
| int request_id,
|
|
|