| Index: components/autofill/core/browser/webdata/autofill_wallet_syncable_service.cc
|
| diff --git a/components/autofill/core/browser/webdata/autofill_wallet_syncable_service.cc b/components/autofill/core/browser/webdata/autofill_wallet_syncable_service.cc
|
| index 54e8be78009e5f9a7b64052a29b2c485461628ad..82b2615d7a990d7e277087ae514e0027fa681b3f 100644
|
| --- a/components/autofill/core/browser/webdata/autofill_wallet_syncable_service.cc
|
| +++ b/components/autofill/core/browser/webdata/autofill_wallet_syncable_service.cc
|
| @@ -82,6 +82,9 @@ CreditCard CardFromSpecifics(const sync_pb::WalletMaskedCreditCard& card) {
|
| result.SetExpirationMonth(card.exp_month());
|
| result.SetExpirationYear(card.exp_year());
|
| result.set_billing_address_id(card.billing_address_id());
|
| + if (card.has_bank_name()) {
|
| + result.SetBankName(card.bank_name());
|
| + }
|
| return result;
|
| }
|
|
|
|
|