| 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 b27569f4d8cb2484834f5da1b0e3267be703ea36..2f28b11bbd95ab2e99f96b853b1f81ccbacfc099 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{"kAutofillUkmLogging",
|
| base::FEATURE_DISABLED_BY_DEFAULT};
|
| +const base::Feature kAutofillUpstreamRequestCvcIfMissing{
|
| + "kAutofillUpstreamRequestCvcIfMissing", base::FEATURE_DISABLED_BY_DEFAULT};
|
| const char kCreditCardSigninPromoImpressionLimitParamKey[] = "impression_limit";
|
| const char kAutofillCreditCardPopupBackgroundColorKey[] = "background_color";
|
| const char kAutofillCreditCardPopupDividerColorKey[] = "dropdown_divider_color";
|
| @@ -229,4 +231,8 @@ bool IsUkmLoggingEnabled() {
|
| return base::FeatureList::IsEnabled(kAutofillUkmLogging);
|
| }
|
|
|
| +bool IsAutofillUpstreamRequestCvcIfMissingExperimentEnabled() {
|
| + return base::FeatureList::IsEnabled(kAutofillUpstreamRequestCvcIfMissing);
|
| +}
|
| +
|
| } // namespace autofill
|
|
|