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 56d54b1e84d6a6ce6957f497191305ab09989957..ae584e788fc4d43a017bacb694f674a0638a91e7 100644 |
--- a/components/autofill/core/browser/webdata/autofill_wallet_syncable_service.cc |
+++ b/components/autofill/core/browser/webdata/autofill_wallet_syncable_service.cc |
@@ -70,7 +70,8 @@ CreditCard CardFromSpecifics(const sync_pb::WalletMaskedCreditCard& card) { |
result.SetNumber(base::UTF8ToUTF16(card.last_four())); |
result.SetServerStatus(ServerToLocalStatus(card.status())); |
result.SetTypeForMaskedCard(CardTypeFromWalletCardType(card.type())); |
- result.SetRawInfo(CREDIT_CARD_NAME, base::UTF8ToUTF16(card.name_on_card())); |
+ result.SetRawInfo(CREDIT_CARD_NAME_FULL, |
+ base::UTF8ToUTF16(card.name_on_card())); |
result.SetExpirationMonth(card.exp_month()); |
result.SetExpirationYear(card.exp_year()); |
return result; |