| 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 d3ed9409aecf3126d94ddd64aacfb6a30bef0e62..e71456af22f08ad6bcf586ee1a38599671db4afb 100644
|
| --- a/content/browser/storage_partition_impl_map.cc
|
| +++ b/content/browser/storage_partition_impl_map.cc
|
| @@ -419,7 +419,6 @@ StoragePartitionImpl* StoragePartitionImplMap::Get(
|
| linked_ptr<net::URLRequestJobFactory::ProtocolHandler>(
|
| URLDataManagerBackend::CreateProtocolHandler(
|
| browser_context_->GetResourceContext(),
|
| - browser_context_->IsOffTheRecord(),
|
| blob_storage_context).release());
|
| std::vector<std::string> additional_webui_schemes;
|
| GetContentClient()->browser()->GetAdditionalWebUISchemes(
|
| @@ -432,13 +431,13 @@ StoragePartitionImpl* StoragePartitionImplMap::Get(
|
| linked_ptr<net::URLRequestJobFactory::ProtocolHandler>(
|
| URLDataManagerBackend::CreateProtocolHandler(
|
| browser_context_->GetResourceContext(),
|
| - browser_context_->IsOffTheRecord(),
|
| blob_storage_context).release());
|
| }
|
| +
|
| protocol_handlers[kChromeDevToolsScheme] =
|
| linked_ptr<net::URLRequestJobFactory::ProtocolHandler>(
|
| - CreateDevToolsProtocolHandler(browser_context_->GetResourceContext(),
|
| - browser_context_->IsOffTheRecord()));
|
| + CreateDevToolsProtocolHandler(
|
| + browser_context_->GetResourceContext()));
|
|
|
| URLRequestInterceptorScopedVector request_interceptors;
|
| request_interceptors.push_back(ServiceWorkerRequestHandler::CreateInterceptor(
|
|
|