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

Unified Diff: components/autofill/content/browser/wallet/wallet_items.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/content/browser/wallet/wallet_items.cc
diff --git a/components/autofill/content/browser/wallet/wallet_items.cc b/components/autofill/content/browser/wallet/wallet_items.cc
index f655882988b2beb0f123be32653f6df52ec38b4f..27b7ed4b9946d8f60df959ed353399426cf70403 100644
--- a/components/autofill/content/browser/wallet/wallet_items.cc
+++ b/components/autofill/content/browser/wallet/wallet_items.cc
@@ -309,7 +309,7 @@ base::string16 WalletItems::MaskedInstrument::DisplayNameDetail() const {
base::string16 WalletItems::MaskedInstrument::TypeAndLastFourDigits() const {
// TODO(dbeam): i18n.
- return DisplayStringFromType(type_) + ASCIIToUTF16(" - ") +
+ return DisplayStringFromType(type_) + base::ASCIIToUTF16(" - ") +
last_four_digits();
}

Powered by Google App Engine
This is Rietveld 408576698