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

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

Issue 2789843004: [Payments] Upload card UI now has a CVC prompt (Closed)
Patch Set: Address code review comment Created 3 years, 8 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
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 11 matching lines...) Expand all
22 22
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 char kCreditCardSigninPromoImpressionLimitParamKey[]; 33 extern const char kCreditCardSigninPromoImpressionLimitParamKey[];
33 extern const char kAutofillCreditCardPopupSettingsSuggestionValueKey[]; 34 extern const char kAutofillCreditCardPopupSettingsSuggestionValueKey[];
34 extern const char kAutofillCreditCardLastUsedDateShowExpirationDateKey[]; 35 extern const char kAutofillCreditCardLastUsedDateShowExpirationDateKey[];
35 36
36 // Returns true if autofill should be enabled. See also 37 // Returns true if autofill should be enabled. See also
37 // IsInAutofillSuggestionsDisabledExperiment below. 38 // IsInAutofillSuggestionsDisabledExperiment below.
38 bool IsAutofillEnabled(const PrefService* pref_service); 39 bool IsAutofillEnabled(const PrefService* pref_service);
39 40
40 // Returns true if autofill suggestions are disabled via experiment. The 41 // Returns true if autofill suggestions are disabled via experiment. The
41 // disabled experiment isn't the same as disabling autofill completely since we 42 // disabled experiment isn't the same as disabling autofill completely since we
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 void ModifyAutofillCreditCardSuggestion(struct Suggestion* suggestion); 98 void ModifyAutofillCreditCardSuggestion(struct Suggestion* suggestion);
98 99
99 // Returns the margin for the icon, label and between icon and label. Returns 0 100 // Returns the margin for the icon, label and between icon and label. Returns 0
100 // if the margin isn't configured in an experiment to tweak autofill popup 101 // if the margin isn't configured in an experiment to tweak autofill popup
101 // layout. 102 // layout.
102 unsigned int GetPopupMargin(); 103 unsigned int GetPopupMargin();
103 104
104 // Returns whether the feature to log UKMs is enabled. 105 // Returns whether the feature to log UKMs is enabled.
105 bool IsUkmLoggingEnabled(); 106 bool IsUkmLoggingEnabled();
106 107
108 // 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 bool IsAutofillUpstreamRequestCvcIfMissingExperimentEnabled();
111
107 } // namespace autofill 112 } // namespace autofill
108 113
109 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXPERIMENTS_H_ 114 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXPERIMENTS_H_
OLDNEW
« no previous file with comments | « components/autofill/core/browser/autofill_client.h ('k') | components/autofill/core/browser/autofill_experiments.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698