| Index: base/base_paths_posix.cc
|
| diff --git a/base/base_paths_posix.cc b/base/base_paths_posix.cc
|
| index 59be09415d60aab7dadd8074949c69d6a5d9fd3b..6d7b5e13c59b62b5f09065c3f49e4df189e53e98 100644
|
| --- a/base/base_paths_posix.cc
|
| +++ b/base/base_paths_posix.cc
|
| @@ -80,7 +80,7 @@ bool PathProviderPosix(int key, FilePath* result) {
|
| std::string cr_source_root;
|
| if (env->GetVar("CR_SOURCE_ROOT", &cr_source_root)) {
|
| path = FilePath(cr_source_root);
|
| - if (file_util::PathExists(path)) {
|
| + if (base::PathExists(path)) {
|
| *result = path;
|
| return true;
|
| } else {
|
|
|