Index: base/base_paths.cc |
diff --git a/base/base_paths.cc b/base/base_paths.cc |
index b90efba0fffb440a02ddeaf3cf05f229574d14ad..9f2b250561f16901f29b6bf7bfd057f0337af5fd 100644 |
--- a/base/base_paths.cc |
+++ b/base/base_paths.cc |
@@ -33,7 +33,7 @@ bool PathProvider(int key, FilePath* result) { |
cur = cur.Append(FILE_PATH_LITERAL("base")); |
cur = cur.Append(FILE_PATH_LITERAL("test")); |
cur = cur.Append(FILE_PATH_LITERAL("data")); |
- if (!file_util::PathExists(cur)) // We don't want to create this. |
+ if (!base::PathExists(cur)) // We don't want to create this. |
return false; |
break; |
default: |