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

Unified Diff: components/autofill/browser/wallet/instrument.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/instrument.cc
diff --git a/components/autofill/browser/wallet/instrument.cc b/components/autofill/browser/wallet/instrument.cc
index 7c90d29b96c1c2806a186a271292427d6182c98b..f2ef382cf58daa790c5b4ba07b33a0c7d42f2276 100644
--- a/components/autofill/browser/wallet/instrument.cc
+++ b/components/autofill/browser/wallet/instrument.cc
@@ -5,8 +5,8 @@
#include "components/autofill/browser/wallet/instrument.h"
#include "base/logging.h"
-#include "base/string_number_conversions.h"
#include "base/string_util.h"
+#include "base/strings/string_number_conversions.h"
#include "base/utf_string_conversions.h"
#include "base/values.h"
#include "components/autofill/browser/autofill_country.h"
@@ -57,7 +57,7 @@ std::string FormOfPaymentToString(Instrument::FormOfPayment form_of_payment) {
} // namespace
Instrument::Instrument(const CreditCard& card,
- const string16& card_verification_number,
+ const base::string16& card_verification_number,
const AutofillProfile& profile)
: primary_account_number_(card.GetRawInfo(CREDIT_CARD_NUMBER)),
card_verification_number_(card_verification_number),
@@ -68,8 +68,8 @@ Instrument::Instrument(const CreditCard& card,
Init();
}
-Instrument::Instrument(const string16& primary_account_number,
- const string16& card_verification_number,
+Instrument::Instrument(const base::string16& primary_account_number,
+ const base::string16& card_verification_number,
int expiration_month,
int expiration_year,
FormOfPayment form_of_payment,

Powered by Google App Engine
This is Rietveld 408576698