| 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 61365695a9a5b35ecf2ad4e073497c5503a1c90f..03731e9848a58912843f770f41cd1ccac9103d68 100644
|
| --- a/components/autofill/core/browser/autofill_experiments.cc
|
| +++ b/components/autofill/core/browser/autofill_experiments.cc
|
| @@ -19,6 +19,8 @@
|
|
|
| namespace autofill {
|
|
|
| +const base::Feature kAutofillCreditCardAssist{
|
| + "AutofillCreditCardAssist", base::FEATURE_DISABLED_BY_DEFAULT};
|
| const base::Feature kAutofillProfileCleanup{"AutofillProfileCleanup",
|
| base::FEATURE_DISABLED_BY_DEFAULT};
|
| const base::Feature kAutofillCreditCardSigninPromo{
|
| @@ -43,6 +45,10 @@ bool IsAutofillCreditCardSigninPromoEnabled() {
|
| return base::FeatureList::IsEnabled(kAutofillCreditCardSigninPromo);
|
| }
|
|
|
| +bool IsAutofillCreditCardAssistEnabled() {
|
| + return base::FeatureList::IsEnabled(kAutofillCreditCardAssist);
|
| +}
|
| +
|
| int GetCreditCardSigninPromoImpressionLimit() {
|
| int impression_limit;
|
| std::string param_value = variations::GetVariationParamValueByFeature(
|
|
|