| 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 c436cde93e37a65bd340c7b6b76b5270d467f867..3f3d063ec5e35d7c3475649429fe7610d3defdb6 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(file_util::Delete(file, true));
|
| + EXPECT_TRUE(base::Delete(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(file_util::Delete(file_path, true));
|
| + ASSERT_TRUE(base::Delete(file_path, true));
|
| }
|
|
|
| TEST_F(ServiceProcessStateFileManipulationTest, ChangeAttr) {
|
|
|