| Index: chrome/browser/component_updater/test/component_patcher_unittest.cc
|
| diff --git a/chrome/browser/component_updater/test/component_patcher_unittest.cc b/chrome/browser/component_updater/test/component_patcher_unittest.cc
|
| index 7593a4bf3084bc2d1448714d1d84bf58171ec226..f9933b363fc9f3a13c97a7ccdae1a9a076836c76 100644
|
| --- a/chrome/browser/component_updater/test/component_patcher_unittest.cc
|
| +++ b/chrome/browser/component_updater/test/component_patcher_unittest.cc
|
| @@ -64,7 +64,7 @@ ComponentUnpacker::Error MockComponentPatcher::Patch(
|
|
|
| // Verify that a 'create' delta update operation works correctly.
|
| TEST_F(ComponentPatcherOperationTest, CheckCreateOperation) {
|
| - EXPECT_TRUE(file_util::CopyFile(
|
| + EXPECT_TRUE(base::CopyFile(
|
| test_file("binary_output.bin"),
|
| input_dir_.path().Append(FILE_PATH_LITERAL("binary_output.bin"))));
|
|
|
| @@ -92,7 +92,7 @@ TEST_F(ComponentPatcherOperationTest, CheckCreateOperation) {
|
|
|
| // Verify that a 'copy' delta update operation works correctly.
|
| TEST_F(ComponentPatcherOperationTest, CheckCopyOperation) {
|
| - EXPECT_TRUE(file_util::CopyFile(
|
| + EXPECT_TRUE(base::CopyFile(
|
| test_file("binary_output.bin"),
|
| installed_dir_.path().Append(FILE_PATH_LITERAL("binary_output.bin"))));
|
|
|
|
|