| 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..ef37213e57a0757357db0c1eab07b375a2179c9b 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 kAutofillUpstreamRequestCvcIfMissing{ | 
| +    "AutofillUpstreamRequestCvcIfMissing", base::FEATURE_DISABLED_BY_DEFAULT}; | 
| const char kCreditCardSigninPromoImpressionLimitParamKey[] = "impression_limit"; | 
| const char kAutofillCreditCardPopupBackgroundColorKey[] = "background_color"; | 
| const char kAutofillCreditCardPopupDividerColorKey[] = "dropdown_divider_color"; | 
| @@ -229,4 +231,12 @@ bool IsUkmLoggingEnabled() { | 
| return base::FeatureList::IsEnabled(kAutofillUkmLogging); | 
| } | 
|  | 
| +bool IsAutofillUpstreamRequestCvcIfMissingExperimentEnabled() { | 
| +#if defined(OS_ANDROID) | 
| +  return false; | 
| +#else | 
| +  return base::FeatureList::IsEnabled(kAutofillUpstreamRequestCvcIfMissing); | 
| +#endif | 
| +} | 
| + | 
| }  // namespace autofill | 
|  |