Index: base/platform_file_unittest.cc |
diff --git a/base/platform_file_unittest.cc b/base/platform_file_unittest.cc |
index 0ba77824ea66eb151e6b1c4bbe5a3da9075893db..a1f3927edddd63ace63927098c66dd36b53927f9 100644 |
--- a/base/platform_file_unittest.cc |
+++ b/base/platform_file_unittest.cc |
@@ -103,7 +103,7 @@ TEST(PlatformFile, CreatePlatformFile) { |
EXPECT_EQ(base::PLATFORM_FILE_OK, error_code); |
EXPECT_TRUE(base::ClosePlatformFile(file)); |
- EXPECT_FALSE(file_util::PathExists(file_path)); |
+ EXPECT_FALSE(base::PathExists(file_path)); |
} |
TEST(PlatformFile, DeleteOpenFile) { |
@@ -139,7 +139,7 @@ TEST(PlatformFile, DeleteOpenFile) { |
// Close both handles and check that the file is gone. |
base::ClosePlatformFile(file); |
base::ClosePlatformFile(same_file); |
- EXPECT_FALSE(file_util::PathExists(file_path)); |
+ EXPECT_FALSE(base::PathExists(file_path)); |
} |
TEST(PlatformFile, ReadWritePlatformFile) { |