Index: cc/test/paths.cc |
diff --git a/cc/test/paths.cc b/cc/test/paths.cc |
index 2aa7aa737964253820ad52aebc6f7f4cc89cce6b..a54d55189c2b88131126c833ad9a6eb0dde35ea9 100644 |
--- a/cc/test/paths.cc |
+++ b/cc/test/paths.cc |
@@ -22,7 +22,7 @@ bool PathProvider(int key, base::FilePath* result) { |
cur = cur.Append(FILE_PATH_LITERAL("cc")); |
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: |