| Index: content/browser/storage_partition_impl_map.cc
|
| diff --git a/content/browser/storage_partition_impl_map.cc b/content/browser/storage_partition_impl_map.cc
|
| index 656469c889e802b2ee7acd6bfeeb89bc2c3c8088..50c17e88070962baee9752eee65bb1f4fbd681bf 100644
|
| --- a/content/browser/storage_partition_impl_map.cc
|
| +++ b/content/browser/storage_partition_impl_map.cc
|
| @@ -416,12 +416,16 @@ StoragePartitionImpl* StoragePartitionImplMap::Get(
|
| partition->SetURLRequestContext(
|
| GetContentClient()->browser()->CreateRequestContext(
|
| browser_context_,
|
| - &protocol_handlers));
|
| + &protocol_handlers,
|
| + ProtocolHandlerScopedVector()));
|
| } else {
|
| partition->SetURLRequestContext(
|
| GetContentClient()->browser()->CreateRequestContextForStoragePartition(
|
| - browser_context_, partition->GetPath(), in_memory,
|
| - &protocol_handlers));
|
| + browser_context_,
|
| + partition->GetPath(),
|
| + in_memory,
|
| + &protocol_handlers,
|
| + ProtocolHandlerScopedVector()));
|
| }
|
| partition->SetMediaURLRequestContext(
|
| partition_domain.empty() ?
|
|
|