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

Unified Diff: components/autofill/core/browser/webdata/autofill_table.cc

Issue 112433004: Update uses of UTF conversions in chrome_frame/, chromeos/, components/ to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
Index: components/autofill/core/browser/webdata/autofill_table.cc
diff --git a/components/autofill/core/browser/webdata/autofill_table.cc b/components/autofill/core/browser/webdata/autofill_table.cc
index a57ac0d9ad06a3186fffae93e81383ee9863efe6..000521ae3dc4ef2bf7505f93ab5a9f7875be1f31 100644
--- a/components/autofill/core/browser/webdata/autofill_table.cc
+++ b/components/autofill/core/browser/webdata/autofill_table.cc
@@ -2236,7 +2236,7 @@ bool AutofillTable::MigrateToVersion54AddI18nFieldsAndRemoveDeprecatedFields() {
base::string16 line2 = s.ColumnString16(2);
base::string16 street_address = line1;
if (!line2.empty())
- street_address += ASCIIToUTF16("\n") + line2;
+ street_address += base::ASCIIToUTF16("\n") + line2;
sql::Statement s_update(db_->GetUniqueStatement(
"UPDATE autofill_profiles_temp SET street_address=? WHERE guid=?"));

Powered by Google App Engine
This is Rietveld 408576698