diff options
Diffstat (limited to 'content/browser/storage_partition_impl_map.cc')
-rw-r--r-- | content/browser/storage_partition_impl_map.cc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/content/browser/storage_partition_impl_map.cc b/content/browser/storage_partition_impl_map.cc index 9ea71830..393176a 100644 --- a/content/browser/storage_partition_impl_map.cc +++ b/content/browser/storage_partition_impl_map.cc @@ -18,10 +18,6 @@ namespace content { -// Dirname for storing persistent data for renderers with isolated storage. -const FilePath::CharType kStoragePartitionDirName[] = - FILE_PATH_LITERAL("Storage Partitions"); - StoragePartitionImplMap::StoragePartitionImplMap( BrowserContext* browser_context) : browser_context_(browser_context) { @@ -45,7 +41,7 @@ StoragePartitionImpl* StoragePartitionImplMap::Get( if (!partition_id.empty()) { // TODO(ajwong): This should check the path is valid? CHECK(IsStringASCII(partition_id)); - partition_path = partition_path.Append(kStoragePartitionDirName) + partition_path = partition_path.Append(kStoragePartitionDirname) .AppendASCII(partition_id); } |