| Index: components/autofill/core/browser/payments/payments_client.cc
|
| diff --git a/components/autofill/core/browser/payments/payments_client.cc b/components/autofill/core/browser/payments/payments_client.cc
|
| index 24c9207562c69474d33a732edd929b8ba2ceb5a3..27694ad4b7b9e5547c6dbce2dcd5a42c19b3690d 100644
|
| --- a/components/autofill/core/browser/payments/payments_client.cc
|
| +++ b/components/autofill/core/browser/payments/payments_client.cc
|
| @@ -294,9 +294,10 @@ class UploadCardRequest : public PaymentsRequest {
|
| context->SetString("language_code", app_locale);
|
| request_dict.Set("context", std::move(context));
|
|
|
| - request_dict.SetString("cardholder_name",
|
| - request_details_.card.GetInfo(
|
| - AutofillType(CREDIT_CARD_NAME), app_locale));
|
| + request_dict.SetString(
|
| + "cardholder_name",
|
| + request_details_.card.GetInfo(AutofillType(CREDIT_CARD_NAME_FULL),
|
| + app_locale));
|
|
|
| scoped_ptr<base::ListValue> addresses(new base::ListValue());
|
| for (const AutofillProfile& profile : request_details_.profiles) {
|
|
|