Index: content/common/content_paths.cc |
diff --git a/content/common/content_paths.cc b/content/common/content_paths.cc |
index 0c856367ffef256c5e867e30cc4e930b1580fffe..acea89a711590eaf7e21efeff8b70188d443883d 100644 |
--- a/content/common/content_paths.cc |
+++ b/content/common/content_paths.cc |
@@ -21,7 +21,7 @@ bool PathProvider(int key, base::FilePath* result) { |
cur = cur.Append(FILE_PATH_LITERAL("content")); |
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; |
*result = cur; |