| Index: components/autofill/core/browser/autofill_test_utils.cc
|
| diff --git a/components/autofill/core/browser/autofill_test_utils.cc b/components/autofill/core/browser/autofill_test_utils.cc
|
| index 53aaa0d8bfad3401027c63e73830987e2835c3f7..55afa05ea2b817914eaa2323d82cc4875f87e43b 100644
|
| --- a/components/autofill/core/browser/autofill_test_utils.cc
|
| +++ b/components/autofill/core/browser/autofill_test_utils.cc
|
| @@ -209,6 +209,14 @@ CreditCard GetVerifiedCreditCard2() {
|
| return credit_card;
|
| }
|
|
|
| +CreditCard GetMaskedServerCard() {
|
| + CreditCard credit_card(CreditCard::MASKED_SERVER_CARD, "a123");
|
| + test::SetCreditCardInfo(&credit_card, "Bonnie Parker",
|
| + "2109" /* Mastercard */, "12", "2012");
|
| + credit_card.SetTypeForMaskedCard(kMasterCard);
|
| + return credit_card;
|
| +}
|
| +
|
| void SetProfileInfo(AutofillProfile* profile,
|
| const char* first_name, const char* middle_name,
|
| const char* last_name, const char* email, const char* company,
|
|
|