| 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 7a0dd9c94c0ca5c84eaa93f5e762d8a86b136573..4e98e17760fdf88dc6dbb7a6279dfc40fc79211b 100644
|
| --- a/content/browser/storage_partition_impl_map.cc
|
| +++ b/content/browser/storage_partition_impl_map.cc
|
| @@ -396,12 +396,11 @@ StoragePartitionImpl* StoragePartitionImplMap::Get(
|
| if (it != partitions_.end())
|
| return it->second;
|
|
|
| - base::FilePath partition_path =
|
| - browser_context_->GetPath().Append(
|
| - GetStoragePartitionPath(partition_domain, partition_name));
|
| - StoragePartitionImpl* partition =
|
| - StoragePartitionImpl::Create(browser_context_, in_memory,
|
| - partition_path);
|
| + base::FilePath relative_partition_path =
|
| + GetStoragePartitionPath(partition_domain, partition_name);
|
| +
|
| + StoragePartitionImpl* partition = StoragePartitionImpl::Create(
|
| + browser_context_, in_memory, relative_partition_path);
|
| partitions_[partition_config] = partition;
|
|
|
| partition->GetQuotaManager()->SetTemporaryStorageEvictionPolicy(
|
|
|