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

Unified Diff: components/autofill/core/browser/credit_card.h

Issue 2249773002: Scan card holder name. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/core/browser/credit_card.h
diff --git a/components/autofill/core/browser/credit_card.h b/components/autofill/core/browser/credit_card.h
index db9712ab9b78b14f824fd589fe8bedebcedbe9d0..f2ded811f564a16f7abe0f2cc357c52d5b9e5c53 100644
--- a/components/autofill/core/browser/credit_card.h
+++ b/components/autofill/core/browser/credit_card.h
@@ -46,7 +46,8 @@ class CreditCard : public AutofillDataModel {
};
CreditCard(const std::string& guid, const std::string& origin);
- CreditCard(const base::string16& card_number,
+ CreditCard(const base::string16& card_holder_name,
Evan Stade 2016/08/16 00:33:35 I don't see why we need a special constructor for
please use gerrit instead 2016/08/16 22:03:19 Leaving the original constructor alone.
Evan Stade 2016/08/17 06:30:57 cool, but I was actually hoping you'd delete it co
please use gerrit instead 2016/08/17 18:16:17 This constructor is used in tons of tests, so it w
+ const base::string16& card_number,
int expiration_month,
int expiration_year);

Powered by Google App Engine
This is Rietveld 408576698