summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/drive/download_handler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/chromeos/drive/download_handler.cc')
-rw-r--r--chrome/browser/chromeos/drive/download_handler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/drive/download_handler.cc b/chrome/browser/chromeos/drive/download_handler.cc
index 6ec8436..850caf9 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().