Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(144)

Side by Side Diff: components/autofill/core/browser/autofill_experiments.h

Issue 2864873002: Adds feature flag to disable AutofillProfileComparator for card name. (Closed)
Patch Set: Restores TODO(crbug.com/666704) for OS_ANDROID for UploadCreditCard_NoCvcFieldOnForm_UserEntersCvc Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | components/autofill/core/browser/autofill_experiments.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | components/autofill/core/browser/autofill_experiments.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698