diff options
Diffstat (limited to 'chrome/browser/chromeos/drive/download_handler.cc')
-rw-r--r-- | chrome/browser/chromeos/drive/download_handler.cc | 2 |
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 50599c3..c87ca90 100644 --- a/chrome/browser/chromeos/drive/download_handler.cc +++ b/chrome/browser/chromeos/drive/download_handler.cc @@ -56,7 +56,7 @@ DriveUserData* GetDriveUserData(DownloadItem* download) { // operations. base::FilePath GetDriveTempDownloadPath( const base::FilePath& drive_tmp_download_dir) { - bool created = file_util::CreateDirectory(drive_tmp_download_dir); + bool created = base::CreateDirectory(drive_tmp_download_dir); DCHECK(created) << "Can not create temp download directory at " << drive_tmp_download_dir.value(); base::FilePath drive_tmp_download_path; |