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

Unified Diff: components/autofill/browser/wallet/instrument_unittest.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_unittest.cc
diff --git a/components/autofill/browser/wallet/instrument_unittest.cc b/components/autofill/browser/wallet/instrument_unittest.cc
index e2b945b71a55e0ddafd94ac19e2c42ad6b1d619c..382ef0367d6c8d0bd0cd5376c47092cbcc7e06d7 100644
--- a/components/autofill/browser/wallet/instrument_unittest.cc
+++ b/components/autofill/browser/wallet/instrument_unittest.cc
@@ -33,7 +33,7 @@ TEST(Instrument, LastFourDigits) {
}
TEST(Instrument, NoPrimaryAccountNumberIsInvalid) {
- Instrument instrument(string16(),
+ Instrument instrument(base::string16(),
ASCIIToUTF16(kCardVerificationNumber),
12,
2015,
@@ -78,7 +78,7 @@ TEST(Instrument, PrimaryAccountNumberNotPassingLuhnIsInvalid) {
TEST(Instrument, NoCardVerificationNumberIsInvalid) {
Instrument instrument(ASCIIToUTF16(kPrimaryAccountNumber),
- string16(),
+ base::string16(),
12,
2015,
Instrument::VISA,

Powered by Google App Engine
This is Rietveld 408576698