Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(969)

Unified Diff: chrome/browser/extensions/api/file_system/file_system_apitest.cc

Issue 18332014: Move Copy* into the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: windows Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698