Index: chrome/common/service_process_util_unittest.cc |
diff --git a/chrome/common/service_process_util_unittest.cc b/chrome/common/service_process_util_unittest.cc |
index 92c5340e67b536961ed41e54924539ff521ef09e..b38ee5a1ead62400c3bdf72f462deeeb17036932 100644 |
--- a/chrome/common/service_process_util_unittest.cc |
+++ b/chrome/common/service_process_util_unittest.cc |
@@ -298,7 +298,7 @@ class ServiceProcessStateFileManipulationTest : public ::testing::Test { |
}; |
void DeleteFunc(const base::FilePath& file) { |
- EXPECT_TRUE(base::Delete(file, true)); |
+ EXPECT_TRUE(base::DeleteFile(file, true)); |
} |
void MoveFunc(const base::FilePath& from, const base::FilePath& to) { |
@@ -401,7 +401,7 @@ TEST_F(ServiceProcessStateFileManipulationTest, TrashBundle) { |
ASSERT_TRUE(mock_launchd()->delete_called()); |
std::string path(base::mac::PathFromFSRef(bundle_ref)); |
base::FilePath file_path(path); |
- ASSERT_TRUE(base::Delete(file_path, true)); |
+ ASSERT_TRUE(base::DeleteFile(file_path, true)); |
} |
TEST_F(ServiceProcessStateFileManipulationTest, ChangeAttr) { |