| Index: base/path_service.cc
|
| diff --git a/base/path_service.cc b/base/path_service.cc
|
| index 5cfb1ef455809cad4c2ad380f125c730bc80bf99..89e58b2cdb1526169cd1e650c24dc35ccd9fb3a5 100644
|
| --- a/base/path_service.cc
|
| +++ b/base/path_service.cc
|
| @@ -253,7 +253,7 @@ bool PathService::OverrideAndCreateIfNeeded(int key,
|
| // Make sure the directory exists. We need to do this before we translate
|
| // this to the absolute path because on POSIX, MakeAbsoluteFilePath fails
|
| // if called on a non-existent path.
|
| - if (!file_util::PathExists(file_path) &&
|
| + if (!base::PathExists(file_path) &&
|
| !file_util::CreateDirectory(file_path))
|
| return false;
|
| }
|
|
|