| 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 11 matching lines...) Expand all Loading... |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace autofill { | 24 namespace autofill { |
| 25 | 25 |
| 26 struct Suggestion; | 26 struct Suggestion; |
| 27 | 27 |
| 28 extern const base::Feature kAutofillCreditCardAssist; | 28 extern const base::Feature kAutofillCreditCardAssist; |
| 29 extern const base::Feature kAutofillScanCardholderName; | 29 extern const base::Feature kAutofillScanCardholderName; |
| 30 extern const base::Feature kAutofillCreditCardPopupLayout; | 30 extern const base::Feature kAutofillCreditCardPopupLayout; |
| 31 extern const base::Feature kAutofillCreditCardLastUsedDateDisplay; | 31 extern const base::Feature kAutofillCreditCardLastUsedDateDisplay; |
| 32 extern const base::Feature kAutofillUkmLogging; | |
| 33 extern const base::Feature kAutofillUpstreamRequestCvcIfMissing; | 32 extern const base::Feature kAutofillUpstreamRequestCvcIfMissing; |
| 34 extern const base::Feature kAutofillUpstreamUseAutofillProfileComparatorForName; | 33 extern const base::Feature kAutofillUpstreamUseAutofillProfileComparatorForName; |
| 35 extern const base::Feature kAutofillUpstreamUseNotRecentlyUsedAutofillProfile; | 34 extern const base::Feature kAutofillUpstreamUseNotRecentlyUsedAutofillProfile; |
| 36 extern const char kCreditCardSigninPromoImpressionLimitParamKey[]; | 35 extern const char kCreditCardSigninPromoImpressionLimitParamKey[]; |
| 37 extern const char kAutofillCreditCardLastUsedDateShowExpirationDateKey[]; | 36 extern const char kAutofillCreditCardLastUsedDateShowExpirationDateKey[]; |
| 38 extern const char kAutofillUpstreamMaxMinutesSinceAutofillProfileUseKey[]; | 37 extern const char kAutofillUpstreamMaxMinutesSinceAutofillProfileUseKey[]; |
| 39 | 38 |
| 40 // Returns true if autofill should be enabled. See also | 39 // Returns true if autofill should be enabled. See also |
| 41 // IsInAutofillSuggestionsDisabledExperiment below. | 40 // IsInAutofillSuggestionsDisabledExperiment below. |
| 42 bool IsAutofillEnabled(const PrefService* pref_service); | 41 bool IsAutofillEnabled(const PrefService* pref_service); |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 | 97 |
| 99 // Modifies the suggestion value and label if the new credit card autofill popup | 98 // Modifies the suggestion value and label if the new credit card autofill popup |
| 100 // experiment is enabled to tweak the display of the value and label. | 99 // experiment is enabled to tweak the display of the value and label. |
| 101 void ModifyAutofillCreditCardSuggestion(struct Suggestion* suggestion); | 100 void ModifyAutofillCreditCardSuggestion(struct Suggestion* suggestion); |
| 102 | 101 |
| 103 // Returns the margin for the icon, label and between icon and label. Returns 0 | 102 // Returns the margin for the icon, label and between icon and label. Returns 0 |
| 104 // if the margin isn't configured in an experiment to tweak autofill popup | 103 // if the margin isn't configured in an experiment to tweak autofill popup |
| 105 // layout. | 104 // layout. |
| 106 unsigned int GetPopupMargin(); | 105 unsigned int GetPopupMargin(); |
| 107 | 106 |
| 108 // Returns whether the feature to log UKMs is enabled. | |
| 109 bool IsUkmLoggingEnabled(); | |
| 110 | |
| 111 // Returns whether the experiment is enabled where Chrome Upstream requests CVC | 107 // Returns whether the experiment is enabled where Chrome Upstream requests CVC |
| 112 // in the offer to save bubble if it was not detected during the checkout flow. | 108 // in the offer to save bubble if it was not detected during the checkout flow. |
| 113 bool IsAutofillUpstreamRequestCvcIfMissingExperimentEnabled(); | 109 bool IsAutofillUpstreamRequestCvcIfMissingExperimentEnabled(); |
| 114 | 110 |
| 115 // Returns the maximum time that could have elapsed since an address profile's | 111 // Returns the maximum time that could have elapsed since an address profile's |
| 116 // most recent use for the adress profile to be included in the candidate set | 112 // most recent use for the adress profile to be included in the candidate set |
| 117 // for card upload. Returns 0 if the experiment is not enabled. | 113 // for card upload. Returns 0 if the experiment is not enabled. |
| 118 base::TimeDelta GetMaxTimeSinceAutofillProfileUseForCardUpload(); | 114 base::TimeDelta GetMaxTimeSinceAutofillProfileUseForCardUpload(); |
| 119 | 115 |
| 120 } // namespace autofill | 116 } // namespace autofill |
| 121 | 117 |
| 122 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXPERIMENTS_H_ | 118 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXPERIMENTS_H_ |
| OLD | NEW |