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

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

Issue 94013004: Add base:: to string16s in chrome/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: try again Created 7 years 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/installer/util/installer_state.cc ('k') | chrome/installer/util/l10n_string_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/installer_util_test_common.cc
diff --git a/chrome/installer/util/installer_util_test_common.cc b/chrome/installer/util/installer_util_test_common.cc
index bc46385214cb4b445d45d5e2496b5a8bd42b7b12..6c1553732ae841c5c366b1d50a569d27663fb42e 100644
--- a/chrome/installer/util/installer_util_test_common.cc
+++ b/chrome/installer/util/installer_util_test_common.cc
@@ -17,9 +17,9 @@ namespace test {
bool CopyFileHierarchy(const base::FilePath& from, const base::FilePath& to) {
// In SHFILEOPSTRUCT below, |pFrom| and |pTo| have to be double-null
// terminated: http://msdn.microsoft.com/library/bb759795.aspx
- string16 double_null_from(from.value());
+ base::string16 double_null_from(from.value());
double_null_from.push_back(L'\0');
- string16 double_null_to(to.value());
+ base::string16 double_null_to(to.value());
double_null_to.push_back(L'\0');
SHFILEOPSTRUCT file_op = {};
« no previous file with comments | « chrome/installer/util/installer_state.cc ('k') | chrome/installer/util/l10n_string_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698