| Index: trunk/src/content/browser/download/base_file_posix.cc
|
| ===================================================================
|
| --- trunk/src/content/browser/download/base_file_posix.cc (revision 278536)
|
| +++ trunk/src/content/browser/download/base_file_posix.cc (working copy)
|
| @@ -27,6 +27,8 @@
|
| if (!stat_succeeded)
|
| LogSystemError("stat", errno);
|
|
|
| + // TODO(estade): Move() falls back to copying and deleting when a simple
|
| + // rename fails. Copying sucks for large downloads. crbug.com/8737
|
| if (!base::Move(full_path_, new_path))
|
| return LogSystemError("Move", errno);
|
|
|
|
|