Index: chrome/browser/chromeos/drive/file_system_util.h |
diff --git a/chrome/browser/chromeos/drive/file_system_util.h b/chrome/browser/chromeos/drive/file_system_util.h |
index fc759c59b13086573149320d02bb517cabe0ae9b..e59468a63eb8bd222d53bf1ef87d6b1d0235940b 100644 |
--- a/chrome/browser/chromeos/drive/file_system_util.h |
+++ b/chrome/browser/chromeos/drive/file_system_util.h |
@@ -146,13 +146,10 @@ std::string EscapeUtf8FileName(const std::string& input); |
base::FilePath GetCacheRootPath(Profile* profile); |
// Extracts resource_id, md5, and extra_extension from cache path. |
-// Case 1: Pinned and outgoing symlinks only have resource_id. |
-// Example: path="/user/GCache/v1/pinned/pdf:a1b2" => |
-// resource_id="pdf:a1b2", md5="", extra_extension=""; |
-// Case 2: Normal files have both resource_id and md5. |
+// Case 1: Normal files have both resource_id and md5. |
// Example: path="/user/GCache/v1/tmp/pdf:a1b2.01234567" => |
// resource_id="pdf:a1b2", md5="01234567", extra_extension=""; |
-// Case 3: Mounted files have all three parts. |
+// Case 2: Mounted files have all three parts. |
// Example: path="/user/GCache/v1/persistent/pdf:a1b2.01234567.mounted" => |
// resource_id="pdf:a1b2", md5="01234567", extra_extension="mounted". |
void ParseCacheFilePath(const base::FilePath& path, |