diff options
Diffstat (limited to 'base/base_paths_posix.cc')
-rw-r--r-- | base/base_paths_posix.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/base_paths_posix.cc b/base/base_paths_posix.cc index 59be094..6d7b5e1 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 { |