| Index: chrome/installer/util/lzma_util.cc
|
| diff --git a/chrome/installer/util/lzma_util.cc b/chrome/installer/util/lzma_util.cc
|
| index 543ab4f17f414a15ad37da07216706cc17342b6c..324acd597824f78c262522ebf1a2c16dcb8852fe 100644
|
| --- a/chrome/installer/util/lzma_util.cc
|
| +++ b/chrome/installer/util/lzma_util.cc
|
| @@ -242,7 +242,7 @@ void LzmaUtil::CloseArchive() {
|
| bool LzmaUtil::CreateDirectory(const base::FilePath& dir) {
|
| bool ret = true;
|
| if (directories_created_.find(dir.value()) == directories_created_.end()) {
|
| - ret = file_util::CreateDirectory(dir);
|
| + ret = base::CreateDirectory(dir);
|
| if (ret)
|
| directories_created_.insert(dir.value());
|
| }
|
|
|