Index: chrome/browser/chromeos/drive/download_handler.cc |
diff --git a/chrome/browser/chromeos/drive/download_handler.cc b/chrome/browser/chromeos/drive/download_handler.cc |
index 6ec843657badb82151a980751247a6bbb8f662fa..850caf9877792f966a881637ac0bc8f58da05d1f 100644 |
--- a/chrome/browser/chromeos/drive/download_handler.cc |
+++ b/chrome/browser/chromeos/drive/download_handler.cc |
@@ -72,7 +72,7 @@ void MoveDownloadedFile(const base::FilePath& downloaded_file, |
const base::FilePath& dest_path) { |
if (error != FILE_ERROR_OK) |
return; |
- file_util::Move(downloaded_file, dest_path); |
+ base::Move(downloaded_file, dest_path); |
} |
// Used to implement CheckForFileExistence(). |