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

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

Issue 1219009: Adds obscuring to credit card numbers when displayed.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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/credit_card.h ('k') | chrome/browser/autofill/credit_card_unittest.cc » ('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 42370)
+++ chrome/browser/autofill/credit_card.cc (working copy)
@@ -203,12 +203,20 @@
}
}
+string16 CreditCard::ObfuscatedNumber() const {
+ if (number().empty())
+ return string16(); // No CC number, means empty preview.
+ string16 result(ASCIIToUTF16("************"));
+ result.append(last_four_digits());
+
+ return result;
+}
+
string16 CreditCard::PreviewSummary() const {
string16 preview;
if (number().empty())
return preview; // No CC number, means empty preview.
- string16 obfuscated_cc_number(ASCIIToUTF16("************"));
- obfuscated_cc_number.append(last_four_digits());
+ string16 obfuscated_cc_number = ObfuscatedNumber();
if (!expiration_month() || !expiration_year())
return obfuscated_cc_number; // no expiration date set
// TODO(georgey): internationalize date
« no previous file with comments | « chrome/browser/autofill/credit_card.h ('k') | chrome/browser/autofill/credit_card_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698