Index: content/browser/download/base_file.cc |
diff --git a/content/browser/download/base_file.cc b/content/browser/download/base_file.cc |
index 90ab485c3615168e91c4d01e5ce42cf6ac40dd18..a1ba73515f084c8d299ac87821e1b83c719bd613 100644 |
--- a/content/browser/download/base_file.cc |
+++ b/content/browser/download/base_file.cc |
@@ -82,8 +82,8 @@ DownloadInterruptReason BaseFile::Initialize( |
// |initial_directory| can still be empty if ContentBrowserClient returned |
// an empty path for the downloads directory. |
if ((initial_directory.empty() || |
- !file_util::CreateTemporaryFileInDir(initial_directory, &temp_file)) && |
- !file_util::CreateTemporaryFile(&temp_file)) { |
+ !base::CreateTemporaryFileInDir(initial_directory, &temp_file)) && |
+ !base::CreateTemporaryFile(&temp_file)) { |
return LogInterruptReason("Unable to create", 0, |
DOWNLOAD_INTERRUPT_REASON_FILE_FAILED); |
} |