Index: chrome/browser/chromeos/drive/file_system/create_file_operation.cc |
diff --git a/chrome/browser/chromeos/drive/file_system/create_file_operation.cc b/chrome/browser/chromeos/drive/file_system/create_file_operation.cc |
index 67cc830a546cfd7891e85598758c5152ad60b10c..cb4c8dc3db55a67342d71e8a685704067b072d39 100644 |
--- a/chrome/browser/chromeos/drive/file_system/create_file_operation.cc |
+++ b/chrome/browser/chromeos/drive/file_system/create_file_operation.cc |
@@ -114,7 +114,7 @@ FileError UpdateLocalStateForCreateFile( |
// Here, failure is not a fatal error, so ignore the returned code. |
FileError cache_store_error = FILE_ERROR_FAILED; |
base::FilePath empty_file; |
- if (file_util::CreateTemporaryFile(&empty_file)) { |
+ if (base::CreateTemporaryFile(&empty_file)) { |
cache_store_error = cache->Store( |
local_id, |
entry.file_specific_info().md5(), |