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 dd664afeb5956e38bb5ca9a75f16d2ddea8221f3..4cf987c8b201c59d5256cbbdd1d60dec57ecca5e 100644 |
--- a/content/browser/download/base_file_posix.cc |
+++ b/content/browser/download/base_file_posix.cc |
@@ -18,7 +18,7 @@ DownloadInterruptReason BaseFile::MoveFileAndAdjustPermissions( |
// First check the file existence and create an empty file if it doesn't |
// exist. |
if (!base::PathExists(new_path)) { |
- int write_error = file_util::WriteFile(new_path, "", 0); |
+ int write_error = base::WriteFile(new_path, "", 0); |
if (write_error < 0) |
return LogSystemError("WriteFile", errno); |
} |