| 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 8e0c3a7458d3469ddec034d88db86af5e04e76b7..403b76df618fe921207b542a5669d799884778df 100644
|
| --- a/components/autofill/core/browser/autofill_experiments.cc
|
| +++ b/components/autofill/core/browser/autofill_experiments.cc
|
| @@ -32,6 +32,8 @@ const base::Feature kAutofillCreditCardPopupLayout{
|
| "AutofillCreditCardPopupLayout", base::FEATURE_DISABLED_BY_DEFAULT};
|
| const base::Feature kAutofillCreditCardLastUsedDateDisplay{
|
| "AutofillCreditCardLastUsedDateDisplay", 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";
|
| @@ -87,6 +89,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() {
|
|
|