| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXPERIMENTS_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXPERIMENTS_H_ |
| 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXPERIMENTS_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXPERIMENTS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 namespace autofill { | 23 namespace autofill { |
| 24 | 24 |
| 25 struct Suggestion; | 25 struct Suggestion; |
| 26 | 26 |
| 27 extern const base::Feature kAutofillCreditCardAssist; | 27 extern const base::Feature kAutofillCreditCardAssist; |
| 28 extern const base::Feature kAutofillScanCardholderName; | 28 extern const base::Feature kAutofillScanCardholderName; |
| 29 extern const base::Feature kAutofillCreditCardPopupLayout; | 29 extern const base::Feature kAutofillCreditCardPopupLayout; |
| 30 extern const base::Feature kAutofillCreditCardLastUsedDateDisplay; | 30 extern const base::Feature kAutofillCreditCardLastUsedDateDisplay; |
| 31 extern const base::Feature kAutofillUkmLogging; | 31 extern const base::Feature kAutofillUkmLogging; |
| 32 extern const base::Feature kAutofillUpstreamRequestCvcIfMissing; | 32 extern const base::Feature kAutofillUpstreamRequestCvcIfMissing; |
| 33 extern const base::Feature kAutofillUpstreamUseAutofillProfileComparatorForName; |
| 33 extern const char kCreditCardSigninPromoImpressionLimitParamKey[]; | 34 extern const char kCreditCardSigninPromoImpressionLimitParamKey[]; |
| 34 extern const char kAutofillCreditCardPopupSettingsSuggestionValueKey[]; | 35 extern const char kAutofillCreditCardPopupSettingsSuggestionValueKey[]; |
| 35 extern const char kAutofillCreditCardLastUsedDateShowExpirationDateKey[]; | 36 extern const char kAutofillCreditCardLastUsedDateShowExpirationDateKey[]; |
| 36 | 37 |
| 37 // Returns true if autofill should be enabled. See also | 38 // Returns true if autofill should be enabled. See also |
| 38 // IsInAutofillSuggestionsDisabledExperiment below. | 39 // IsInAutofillSuggestionsDisabledExperiment below. |
| 39 bool IsAutofillEnabled(const PrefService* pref_service); | 40 bool IsAutofillEnabled(const PrefService* pref_service); |
| 40 | 41 |
| 41 // Returns true if autofill suggestions are disabled via experiment. The | 42 // Returns true if autofill suggestions are disabled via experiment. The |
| 42 // disabled experiment isn't the same as disabling autofill completely since we | 43 // disabled experiment isn't the same as disabling autofill completely since we |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 // Returns whether the feature to log UKMs is enabled. | 106 // Returns whether the feature to log UKMs is enabled. |
| 106 bool IsUkmLoggingEnabled(); | 107 bool IsUkmLoggingEnabled(); |
| 107 | 108 |
| 108 // Returns whether the experiment is enabled where Chrome Upstream requests CVC | 109 // Returns whether the experiment is enabled where Chrome Upstream requests CVC |
| 109 // in the offer to save bubble if it was not detected during the checkout flow. | 110 // in the offer to save bubble if it was not detected during the checkout flow. |
| 110 bool IsAutofillUpstreamRequestCvcIfMissingExperimentEnabled(); | 111 bool IsAutofillUpstreamRequestCvcIfMissingExperimentEnabled(); |
| 111 | 112 |
| 112 } // namespace autofill | 113 } // namespace autofill |
| 113 | 114 |
| 114 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXPERIMENTS_H_ | 115 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXPERIMENTS_H_ |
| OLD | NEW |