Index: chrome/browser/sync_file_system/drive_backend_v1/api_util.cc |
diff --git a/chrome/browser/sync_file_system/drive_backend_v1/api_util.cc b/chrome/browser/sync_file_system/drive_backend_v1/api_util.cc |
index 2dcd6023afe13dd181378b6d10466d998e6154e5..cceba2ec0da83c64646ebc7cb891dc1187ddc696 100644 |
--- a/chrome/browser/sync_file_system/drive_backend_v1/api_util.cc |
+++ b/chrome/browser/sync_file_system/drive_backend_v1/api_util.cc |
@@ -145,7 +145,7 @@ bool CreateTemporaryFile(const base::FilePath& dir_path, |
webkit_blob::ScopedFile* temp_file) { |
base::FilePath temp_file_path; |
const bool success = file_util::CreateDirectory(dir_path) && |
- file_util::CreateTemporaryFileInDir(dir_path, &temp_file_path); |
+ base::CreateTemporaryFileInDir(dir_path, &temp_file_path); |
if (!success) |
return success; |
*temp_file = |