| Index: components/autofill/core/browser/personal_data_manager.cc
|
| diff --git a/components/autofill/core/browser/personal_data_manager.cc b/components/autofill/core/browser/personal_data_manager.cc
|
| index 1ed3ce545010d2645175c9f3b1298d4ba6687163..8039bc4e6013783e6b65278799583dedbcbec2c9 100644
|
| --- a/components/autofill/core/browser/personal_data_manager.cc
|
| +++ b/components/autofill/core/browser/personal_data_manager.cc
|
| @@ -1674,12 +1674,7 @@ std::vector<Suggestion> PersonalDataManager::GetSuggestionsForCards(
|
| // Otherwise the label is the card number, or if that is empty the
|
| // cardholder name. The label should never repeat the value.
|
| if (type.GetStorableType() == CREDIT_CARD_NUMBER) {
|
| - if (IsAutofillCreditCardBankNameDisplayExperimentEnabled() &&
|
| - !credit_card->bank_name().empty()) {
|
| - suggestion->value = credit_card->BankNameAndLastFourDigits();
|
| - } else {
|
| - suggestion->value = credit_card->NetworkAndLastFourDigits();
|
| - }
|
| + suggestion->value = credit_card->NetworkAndLastFourDigits();
|
| if (IsAutofillCreditCardLastUsedDateDisplayExperimentEnabled()) {
|
| suggestion->label =
|
| credit_card->GetLastUsedDateForDisplay(app_locale_);
|
|
|