| 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 c938fb1e2c1bea1c4a868e8f65dd958e8cf0ca19..fc248206841e1afb60cf816a947ddaac310e8a77 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) {
|
|
|