Index: ui/base/ui_base_paths.cc |
diff --git a/ui/base/ui_base_paths.cc b/ui/base/ui_base_paths.cc |
index 98642b4d64e5a8f0baac5f91999621ea0126774b..ae1f3fff26df70b73b0329c2862f3aac0187348d 100644 |
--- a/ui/base/ui_base_paths.cc |
+++ b/ui/base/ui_base_paths.cc |
@@ -48,7 +48,7 @@ bool PathProvider(int key, base::FilePath* result) { |
cur = cur.Append(FILE_PATH_LITERAL("app")); |
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; |
#if defined(OS_ANDROID) |
@@ -62,7 +62,7 @@ bool PathProvider(int key, base::FilePath* result) { |
return false; |
} |
- if (create_dir && !file_util::PathExists(cur) && |
+ if (create_dir && !base::PathExists(cur) && |
!file_util::CreateDirectory(cur)) |
return false; |