| 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 828a1ed197d3d6fd33fd35b8530b6daab7ebf254..05f771c47342dea1c6c050f77f4e64a31ae445b2 100644
|
| --- a/content/browser/storage_partition_impl_map.cc
|
| +++ b/content/browser/storage_partition_impl_map.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "content/browser/storage_partition_impl_map.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/bind.h"
|
| #include "base/callback.h"
|
| #include "base/command_line.h"
|
| @@ -463,17 +465,13 @@ StoragePartitionImpl* StoragePartitionImplMap::Get(
|
| if (partition_domain.empty()) {
|
| partition->SetURLRequestContext(
|
| GetContentClient()->browser()->CreateRequestContext(
|
| - browser_context_,
|
| - &protocol_handlers,
|
| - request_interceptors.Pass()));
|
| + browser_context_, &protocol_handlers,
|
| + std::move(request_interceptors)));
|
| } else {
|
| partition->SetURLRequestContext(
|
| GetContentClient()->browser()->CreateRequestContextForStoragePartition(
|
| - browser_context_,
|
| - partition->GetPath(),
|
| - in_memory,
|
| - &protocol_handlers,
|
| - request_interceptors.Pass()));
|
| + browser_context_, partition->GetPath(), in_memory,
|
| + &protocol_handlers, std::move(request_interceptors)));
|
| }
|
| partition->SetMediaURLRequestContext(
|
| partition_domain.empty() ?
|
|
|