| 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 7fe79344be5a71f7a785ffaaebcac11a9f25a8ec..c768fe4139fd0a03d1546f6fa5cea143b8443492 100644
|
| --- a/content/browser/storage_partition_impl_map.cc
|
| +++ b/content/browser/storage_partition_impl_map.cc
|
| @@ -413,8 +413,8 @@ StoragePartitionImpl* StoragePartitionImplMap::Get(
|
| CreateDevToolsProtocolHandler(browser_context_->GetResourceContext(),
|
| browser_context_->IsOffTheRecord()));
|
|
|
| - ProtocolHandlerScopedVector protocol_interceptors;
|
| - protocol_interceptors.push_back(
|
| + URLRequestInterceptorScopedVector request_interceptors;
|
| + request_interceptors.push_back(
|
| ServiceWorkerRequestHandler::CreateInterceptor().release());
|
|
|
| // These calls must happen after StoragePartitionImpl::Create().
|
| @@ -423,7 +423,7 @@ StoragePartitionImpl* StoragePartitionImplMap::Get(
|
| GetContentClient()->browser()->CreateRequestContext(
|
| browser_context_,
|
| &protocol_handlers,
|
| - protocol_interceptors.Pass()));
|
| + request_interceptors.Pass()));
|
| } else {
|
| partition->SetURLRequestContext(
|
| GetContentClient()->browser()->CreateRequestContextForStoragePartition(
|
| @@ -431,7 +431,7 @@ StoragePartitionImpl* StoragePartitionImplMap::Get(
|
| partition->GetPath(),
|
| in_memory,
|
| &protocol_handlers,
|
| - protocol_interceptors.Pass()));
|
| + request_interceptors.Pass()));
|
| }
|
| partition->SetMediaURLRequestContext(
|
| partition_domain.empty() ?
|
|
|