Index: content/browser/download/base_file.cc |
diff --git a/content/browser/download/base_file.cc b/content/browser/download/base_file.cc |
index 256a2327ca27a9bf8c1c812fcd6eb83c3154f12c..7e5976a95aa1c6dc5bfa84c22d9bc5e0014a3772 100644 |
--- a/content/browser/download/base_file.cc |
+++ b/content/browser/download/base_file.cc |
@@ -118,19 +118,19 @@ net::Error MapShFileOperationCodes(int code) { |
"An unspecified error occurred on the destination.") |
// These are not expected to occur for in our usage. |
- SHFILE_TO_NET_ERROR(DE_MANYSRC1DEST, 0x72, FAILED, |
- "Multiple file paths were specified in the source buffer, " |
- "but only one destination file path.") |
- SHFILE_TO_NET_ERROR(DE_DIFFDIR, 0x73, FAILED, |
- "Rename operation was specified but the destination path is " |
- "a different directory. Use the move operation instead.") |
+ SHFILE_TO_NET_ERROR(DE_MANYSRC1DEST, 0x72, FAILED, |
+ "Multiple file paths were specified in the source buffer, " |
+ "but only one destination file path.") |
+ SHFILE_TO_NET_ERROR(DE_DIFFDIR, 0x73, FAILED, |
+ "Rename operation was specified but the destination path is " |
+ "a different directory. Use the move operation instead.") |
SHFILE_TO_NET_ERROR(DE_ROOTDIR, 0x74, FAILED, |
"The source is a root directory, which cannot be moved or renamed.") |
SHFILE_TO_NET_ERROR(DE_DESTSUBTREE, 0x76, FAILED, |
"The destination is a subtree of the source.") |
- SHFILE_TO_NET_ERROR(DE_MANYDEST, 0x7A, FAILED, |
- "The operation involved multiple destination paths, " |
- "which can fail in the case of a move operation.") |
+ SHFILE_TO_NET_ERROR(DE_MANYDEST, 0x7A, FAILED, |
+ "The operation involved multiple destination paths, " |
+ "which can fail in the case of a move operation.") |
SHFILE_TO_NET_ERROR(DE_DESTSAMETREE, 0x7D, FAILED, |
"The source and destination have the same parent folder.") |
SHFILE_TO_NET_ERROR(DE_UNKNOWN_ERROR, 0x402, FAILED, |