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

Unified Diff: chrome/browser/autofill/credit_card.cc

Issue 517054: Remove all uses of EmptyString16(), EmptyWString(), and EmptyGURL(), and thei... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 11 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
« no previous file with comments | « chrome/browser/autofill/contact_info.cc ('k') | chrome/browser/autofill/form_group.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/credit_card.cc
===================================================================
--- chrome/browser/autofill/credit_card.cc (revision 35729)
+++ chrome/browser/autofill/credit_card.cc (working copy)
@@ -113,7 +113,7 @@
string16 year = Expiration2DigitYearAsString();
if (!month.empty() && !year.empty())
return month + ASCIIToUTF16("/") + year;
- return EmptyString16();
+ return string16();
}
case CREDIT_CARD_EXP_DATE_4_DIGIT_YEAR: {
@@ -121,7 +121,7 @@
string16 year = Expiration4DigitYearAsString();
if (!month.empty() && !year.empty())
return month + ASCIIToUTF16("/") + year;
- return EmptyString16();
+ return string16();
}
case CREDIT_CARD_TYPE:
@@ -135,7 +135,7 @@
default:
// ComputeDataPresentForArray will hit this repeatedly.
- return EmptyString16();
+ return string16();
}
}
@@ -186,7 +186,7 @@
string16 CreditCard::ExpirationMonthAsString() const {
if (expiration_month_ == 0)
- return EmptyString16();
+ return string16();
string16 month = IntToString16(expiration_month_);
if (expiration_month_ >= 10)
@@ -199,14 +199,14 @@
string16 CreditCard::Expiration4DigitYearAsString() const {
if (expiration_year_ == 0)
- return EmptyString16();
+ return string16();
return IntToString16(Expiration4DigitYear());
}
string16 CreditCard::Expiration2DigitYearAsString() const {
if (expiration_year_ == 0)
- return EmptyString16();
+ return string16();
return IntToString16(Expiration2DigitYear());
}
« no previous file with comments | « chrome/browser/autofill/contact_info.cc ('k') | chrome/browser/autofill/form_group.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698