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

Unified Diff: chrome/browser/component_updater/test/component_patcher_unittest_win.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/component_updater/test/component_patcher_unittest_win.cc
diff --git a/chrome/browser/component_updater/test/component_patcher_unittest_win.cc b/chrome/browser/component_updater/test/component_patcher_unittest_win.cc
index 896cf5961f3be7f739de2c5d6be9fcc8a6bb2019..9787d92dc76a8acf802b074dc840633958d44b9c 100644
--- a/chrome/browser/component_updater/test/component_patcher_unittest_win.cc
+++ b/chrome/browser/component_updater/test/component_patcher_unittest_win.cc
@@ -21,10 +21,10 @@
// Verify that a 'courgette' delta update operation works correctly.
TEST_F(ComponentPatcherOperationTest, CheckCourgetteOperation) {
- EXPECT_TRUE(file_util::CopyFile(
+ EXPECT_TRUE(base::CopyFile(
test_file("binary_input.bin"),
installed_dir_.path().Append(FILE_PATH_LITERAL("binary_input.bin"))));
- EXPECT_TRUE(file_util::CopyFile(
+ EXPECT_TRUE(base::CopyFile(
test_file("binary_courgette_patch.bin"),
input_dir_.path().Append(
FILE_PATH_LITERAL("binary_courgette_patch.bin"))));
@@ -53,10 +53,10 @@ TEST_F(ComponentPatcherOperationTest, CheckCourgetteOperation) {
// Verify that a 'bsdiff' delta update operation works correctly.
TEST_F(ComponentPatcherOperationTest, CheckBsdiffOperation) {
- EXPECT_TRUE(file_util::CopyFile(
+ EXPECT_TRUE(base::CopyFile(
test_file("binary_input.bin"),
installed_dir_.path().Append(FILE_PATH_LITERAL("binary_input.bin"))));
- EXPECT_TRUE(file_util::CopyFile(
+ EXPECT_TRUE(base::CopyFile(
test_file("binary_bsdiff_patch.bin"),
input_dir_.path().Append(FILE_PATH_LITERAL("binary_bsdiff_patch.bin"))));

Powered by Google App Engine
This is Rietveld 408576698