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

Unified Diff: components/autofill/browser/wallet/full_wallet.cc

Issue 13973004: Convert string16 -> base::string16 in components/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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: components/autofill/browser/wallet/full_wallet.cc
diff --git a/components/autofill/browser/wallet/full_wallet.cc b/components/autofill/browser/wallet/full_wallet.cc
index 9e9fb0392b0cc4ed77ab0577ddfc618a152426b9..b68c1aa2a0e1c58d75fb17346a8d5f56ad1f851c 100644
--- a/components/autofill/browser/wallet/full_wallet.cc
+++ b/components/autofill/browser/wallet/full_wallet.cc
@@ -124,7 +124,7 @@ scoped_ptr<FullWallet>
required_actions));
}
-string16 FullWallet::GetInfo(AutofillFieldType type) {
+base::string16 FullWallet::GetInfo(AutofillFieldType type) {
switch (type) {
case CREDIT_CARD_NUMBER:
return UTF8ToUTF16(GetPan());
@@ -145,7 +145,7 @@ string16 FullWallet::GetInfo(AutofillFieldType type) {
NOTREACHED();
}
- return string16();
+ return base::string16();
}
bool FullWallet::HasRequiredAction(RequiredAction action) const {

Powered by Google App Engine
This is Rietveld 408576698