| Index: content/browser/download/base_file.cc
|
| diff --git a/content/browser/download/base_file.cc b/content/browser/download/base_file.cc
|
| index a1ba73515f084c8d299ac87821e1b83c719bd613..1de3e842dd85b6e553bcfdd973cb4fddd97d09a3 100644
|
| --- a/content/browser/download/base_file.cc
|
| +++ b/content/browser/download/base_file.cc
|
| @@ -165,7 +165,7 @@ DownloadInterruptReason BaseFile::Rename(const base::FilePath& new_path) {
|
| net::NetLog::TYPE_DOWNLOAD_FILE_RENAMED,
|
| base::Bind(&FileRenamedNetLogCallback, &full_path_, &new_path));
|
| Close();
|
| - file_util::CreateDirectory(new_path.DirName());
|
| + base::CreateDirectory(new_path.DirName());
|
|
|
| // A simple rename wouldn't work here since we want the file to have
|
| // permissions / security descriptors that makes sense in the new directory.
|
|
|