| Index: components/cronet/url_request_context_config.cc
|
| diff --git a/components/cronet/url_request_context_config.cc b/components/cronet/url_request_context_config.cc
|
| index 66f9fb06e053ac65bbd6bd6244bb171a4529129a..172db5a2c6ccd06d66d8ee642573473e279a3f63 100644
|
| --- a/components/cronet/url_request_context_config.cc
|
| +++ b/components/cronet/url_request_context_config.cc
|
| @@ -276,7 +276,8 @@ void URLRequestContextConfig::ConfigureURLRequestContextBuilder(
|
| net::URLRequestContextBuilder::HttpCacheParams cache_params;
|
| if (http_cache == DISK && !storage_path.empty()) {
|
| cache_params.type = net::URLRequestContextBuilder::HttpCacheParams::DISK;
|
| - cache_params.path = base::FilePath(storage_path);
|
| + cache_params.path =
|
| + base::FilePath(storage_path).Append(FILE_PATH_LITERAL("disk_cache"));
|
| } else {
|
| cache_params.type =
|
| net::URLRequestContextBuilder::HttpCacheParams::IN_MEMORY;
|
|
|