| Index: content/browser/download/base_file_posix.cc
|
| diff --git a/content/browser/download/base_file_posix.cc b/content/browser/download/base_file_posix.cc
|
| index 19009429375603e94733e23ab622bb0a30cd3fb8..dd664afeb5956e38bb5ca9a75f16d2ddea8221f3 100644
|
| --- a/content/browser/download/base_file_posix.cc
|
| +++ b/content/browser/download/base_file_posix.cc
|
| @@ -17,7 +17,7 @@ DownloadInterruptReason BaseFile::MoveFileAndAdjustPermissions(
|
| struct stat st;
|
| // First check the file existence and create an empty file if it doesn't
|
| // exist.
|
| - if (!file_util::PathExists(new_path)) {
|
| + if (!base::PathExists(new_path)) {
|
| int write_error = file_util::WriteFile(new_path, "", 0);
|
| if (write_error < 0)
|
| return LogSystemError("WriteFile", errno);
|
|
|