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

Unified Diff: chrome/installer/setup/setup_util_unittest.cc

Issue 19052005: Move PathIsWritable, DirectoryExists, ContentsEqual, and TextContentsEqual to the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « chrome/common/mac/app_mode_chrome_locator_unittest.mm ('k') | chrome/installer/setup/uninstall.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/setup/setup_util_unittest.cc
diff --git a/chrome/installer/setup/setup_util_unittest.cc b/chrome/installer/setup/setup_util_unittest.cc
index 5cc08b15422660c7e7a53c04499b0f490c78fae4..ec78c5c75a6204f8f1372b514fea9c647bf14dcd 100644
--- a/chrome/installer/setup/setup_util_unittest.cc
+++ b/chrome/installer/setup/setup_util_unittest.cc
@@ -107,7 +107,7 @@ TEST_F(SetupUtilTestWithDir, ApplyDiffPatchTest) {
base::FilePath dest = work_dir.AppendASCII("archive2.7z");
EXPECT_EQ(installer::ApplyDiffPatch(src, patch, dest, NULL), 0);
base::FilePath base = data_dir_.AppendASCII("archive2.7z");
- EXPECT_TRUE(file_util::ContentsEqual(dest, base));
+ EXPECT_TRUE(base::ContentsEqual(dest, base));
EXPECT_EQ(installer::ApplyDiffPatch(base::FilePath(), base::FilePath(),
base::FilePath(), NULL),
« no previous file with comments | « chrome/common/mac/app_mode_chrome_locator_unittest.mm ('k') | chrome/installer/setup/uninstall.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698