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

Unified Diff: components/autofill/core/browser/autofill_metrics_unittest.cc

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/autofill_metrics_unittest.cc
diff --git a/components/autofill/core/browser/autofill_metrics_unittest.cc b/components/autofill/core/browser/autofill_metrics_unittest.cc
index c19f5c2247130ff8a93c82d6c8e0877a9f047594..1086f4c3bdeb329b82813d3fd58da354fb18b57c 100644
--- a/components/autofill/core/browser/autofill_metrics_unittest.cc
+++ b/components/autofill/core/browser/autofill_metrics_unittest.cc
@@ -156,7 +156,8 @@ class TestPersonalDataManager : public PersonalDataManager {
server_credit_cards_.clear();
if (include_local_credit_card) {
CreditCard* credit_card =
- new CreditCard(base::ASCIIToUTF16("4111111111111111"), 12, 24);
+ new CreditCard(base::ASCIIToUTF16("Alice"),
+ base::ASCIIToUTF16("4111111111111111"), 12, 24);
credit_card->set_guid("10000000-0000-0000-0000-000000000001");
local_credit_cards_.push_back(credit_card);
}

Powered by Google App Engine
This is Rietveld 408576698