Index: content/browser/storage_partition_impl.cc |
diff --git a/content/browser/storage_partition_impl.cc b/content/browser/storage_partition_impl.cc |
index b09918b6aeeebfbf62c55b74e175dd9b3914274f..7ba19db086d3e608d288eec93a9530ff70a6b603 100644 |
--- a/content/browser/storage_partition_impl.cc |
+++ b/content/browser/storage_partition_impl.cc |
@@ -25,16 +25,16 @@ namespace { |
// for the "default" extension storage partition and one directory for each |
// persistent partition used by an extension's browser tags. Example: |
// |
-// {kStoragePartitionDirname}/extensions/ABCDEF/default |
-// {kStoragePartitionDirname}/extensions/ABCDEF/{hash(guest partition)} |
+// Storage/ext/ABCDEF/def |
+// Storage/ext/ABCDEF/{hash(guest partition)} |
// |
// The code in GetPartitionPath() constructs these path names. |
const FilePath::CharType kStoragePartitionDirname[] = |
- FILE_PATH_LITERAL("Storage Partitions"); |
+ FILE_PATH_LITERAL("Storage"); |
const FilePath::CharType kExtensionsDirname[] = |
- FILE_PATH_LITERAL("extensions"); |
+ FILE_PATH_LITERAL("ext"); |
const FilePath::CharType kDefaultPartitionDirname[] = |
- FILE_PATH_LITERAL("default"); |
+ FILE_PATH_LITERAL("def"); |
} // namespace |