| Index: chrome/browser/importer/firefox_importer_browsertest.cc
|
| diff --git a/chrome/browser/importer/firefox_importer_browsertest.cc b/chrome/browser/importer/firefox_importer_browsertest.cc
|
| index 8f1b3d5a63a9649d0fee5f1690826637af987b09..67faa4385ba9ddbdec60eedc6b278ae2ce0d82e1 100644
|
| --- a/chrome/browser/importer/firefox_importer_browsertest.cc
|
| +++ b/chrome/browser/importer/firefox_importer_browsertest.cc
|
| @@ -238,10 +238,10 @@ class FirefoxProfileImporterBrowserTest : public InProcessBrowserTest {
|
| base::FilePath data_path;
|
| ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &data_path));
|
| data_path = data_path.AppendASCII(profile_dir);
|
| - ASSERT_TRUE(file_util::CopyDirectory(data_path, profile_path_, true));
|
| + ASSERT_TRUE(base::CopyDirectory(data_path, profile_path_, true));
|
| ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &data_path));
|
| data_path = data_path.AppendASCII("firefox3_nss");
|
| - ASSERT_TRUE(file_util::CopyDirectory(data_path, profile_path_, false));
|
| + ASSERT_TRUE(base::CopyDirectory(data_path, profile_path_, false));
|
|
|
| base::FilePath search_engine_path = app_path_;
|
| search_engine_path = search_engine_path.AppendASCII("searchplugins");
|
| @@ -254,8 +254,7 @@ class FirefoxProfileImporterBrowserTest : public InProcessBrowserTest {
|
| LOG(ERROR) << L"Missing internal test data";
|
| return;
|
| }
|
| - ASSERT_TRUE(file_util::CopyDirectory(data_path,
|
| - search_engine_path, false));
|
| + ASSERT_TRUE(base::CopyDirectory(data_path, search_engine_path, false));
|
| }
|
|
|
| importer::SourceProfile source_profile;
|
|
|