Index: components/autofill/core/browser/autofill_experiments.cc |
diff --git a/components/autofill/core/browser/autofill_experiments.cc b/components/autofill/core/browser/autofill_experiments.cc |
index 8d5704deed74f4612b8c8db055e03dbfbfc90638..015b3d8ffd4debd4203f465ec89d63d6f2167202 100644 |
--- a/components/autofill/core/browser/autofill_experiments.cc |
+++ b/components/autofill/core/browser/autofill_experiments.cc |
@@ -34,6 +34,8 @@ const base::Feature kAutofillCreditCardLastUsedDateDisplay{ |
"AutofillCreditCardLastUsedDateDisplay", base::FEATURE_DISABLED_BY_DEFAULT}; |
const base::Feature kAutofillUkmLogging{"AutofillUkmLogging", |
base::FEATURE_DISABLED_BY_DEFAULT}; |
+const base::Feature kAutofillCreditCardBankNameDisplay{ |
+ "AutofillCreditCardBankNameDisplay", base::FEATURE_DISABLED_BY_DEFAULT}; |
const char kCreditCardSigninPromoImpressionLimitParamKey[] = "impression_limit"; |
const char kAutofillCreditCardPopupBackgroundColorKey[] = "background_color"; |
const char kAutofillCreditCardPopupDividerColorKey[] = "dropdown_divider_color"; |
@@ -89,6 +91,10 @@ bool IsAutofillCreditCardLastUsedDateDisplayExperimentEnabled() { |
return base::FeatureList::IsEnabled(kAutofillCreditCardLastUsedDateDisplay); |
} |
+bool IsAutofillCreditCardBankNameDisplayExperimentEnabled() { |
+ return base::FeatureList::IsEnabled(kAutofillCreditCardBankNameDisplay); |
+} |
+ |
// |GetCreditCardPopupParameterUintValue| returns 0 if experiment parameter is |
// not specified. 0 == |SK_ColorTRANSPARENT|. |
SkColor GetCreditCardPopupBackgroundColor() { |