| Index: chrome/browser/extensions/api/file_system/file_system_apitest.cc
|
| diff --git a/chrome/browser/extensions/api/file_system/file_system_apitest.cc b/chrome/browser/extensions/api/file_system/file_system_apitest.cc
|
| index ab7c4d5e32d4d93a6b3c5159a19a894cbee1d537..4792b0e49ce68b0ed845ce10a46267926c9618d5 100644
|
| --- a/chrome/browser/extensions/api/file_system/file_system_apitest.cc
|
| +++ b/chrome/browser/extensions/api/file_system/file_system_apitest.cc
|
| @@ -92,7 +92,7 @@ class FileSystemApiTest : public PlatformAppBrowserTest {
|
| base::FilePath destination = temp_dir_.path().AppendASCII(destination_name);
|
| if (copy_gold) {
|
| base::FilePath source = test_root_folder_.AppendASCII("gold.txt");
|
| - EXPECT_TRUE(file_util::CopyFile(source, destination));
|
| + EXPECT_TRUE(base::CopyFile(source, destination));
|
| }
|
| return destination;
|
| }
|
| @@ -153,7 +153,7 @@ IN_PROC_BROWSER_TEST_F(FileSystemApiTest,
|
|
|
| base::FilePath test_file = test_path.AppendASCII("gold.txt");
|
| base::FilePath source = test_root_folder_.AppendASCII("gold.txt");
|
| - EXPECT_TRUE(file_util::CopyFile(source, test_file));
|
| + EXPECT_TRUE(base::CopyFile(source, test_file));
|
|
|
| FileSystemChooseEntryFunction::SkipPickerAndAlwaysSelectPathForTest(
|
| &test_file);
|
|
|