| Index: chrome/common/extensions/extension_file_util.cc
|
| diff --git a/chrome/common/extensions/extension_file_util.cc b/chrome/common/extensions/extension_file_util.cc
|
| index 1e41ea47fa2fd124bd7ae977106f8749538493c3..82982b0cc155b51b030452a5250d6f5df5a32d28 100644
|
| --- a/chrome/common/extensions/extension_file_util.cc
|
| +++ b/chrome/common/extensions/extension_file_util.cc
|
| @@ -71,7 +71,7 @@ base::FilePath InstallExtension(const base::FilePath& unpacked_source_dir,
|
|
|
| // Create the extension directory if it doesn't exist already.
|
| if (!base::PathExists(extension_dir)) {
|
| - if (!file_util::CreateDirectory(extension_dir))
|
| + if (!base::CreateDirectory(extension_dir))
|
| return base::FilePath();
|
| }
|
|
|
| @@ -517,7 +517,7 @@ base::FilePath GetInstallTempDir(const base::FilePath& extensions_dir) {
|
| }
|
|
|
| // Directory doesn't exist, so create it.
|
| - if (!file_util::CreateDirectory(temp_path)) {
|
| + if (!base::CreateDirectory(temp_path)) {
|
| DLOG(WARNING) << "Couldn't create directory: " << temp_path.value();
|
| return base::FilePath();
|
| }
|
|
|