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

Unified Diff: chrome/installer/util/install_util_unittest.cc

Issue 1223983002: Move WriteInto to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/installer/util/install_util_unittest.cc
diff --git a/chrome/installer/util/install_util_unittest.cc b/chrome/installer/util/install_util_unittest.cc
index a891f8de0c0cc5dfe550e91364f0ee54fb5f59c7..92f9b7532de2676f1d837d939d30df5f442d7852 100644
--- a/chrome/installer/util/install_util_unittest.cc
+++ b/chrome/installer/util/install_util_unittest.cc
@@ -447,7 +447,7 @@ TEST_F(InstallUtilTest, ProgramCompare) {
// Test where strings don't match, but the same file is indicated.
std::wstring short_expect;
DWORD short_len = GetShortPathName(expect.value().c_str(),
- WriteInto(&short_expect, MAX_PATH),
+ base::WriteInto(&short_expect, MAX_PATH),
MAX_PATH);
ASSERT_NE(static_cast<DWORD>(0), short_len);
ASSERT_GT(static_cast<DWORD>(MAX_PATH), short_len);
« no previous file with comments | « chrome/installer/util/delete_after_reboot_helper.cc ('k') | components/autofill/core/browser/autofill_country.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698