Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(288)

Unified Diff: content/browser/storage_partition_impl.cc

Issue 10967030: Shorten the path length to get under MAX_PATH on windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698