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

Unified Diff: chrome/browser/android/chrome_feature_list.cc

Issue 2437593007: [Payments] Field trial and flag to abort payment request if no card. (Closed)
Patch Set: Disabled experiment for tests Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/android/chrome_feature_list.h ('k') | testing/variations/fieldtrial_testing_config.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/chrome_feature_list.cc
diff --git a/chrome/browser/android/chrome_feature_list.cc b/chrome/browser/android/chrome_feature_list.cc
index 0f9705fff70df981df9e574da2e46e6981fdf8a7..cb7531461ccc9f4b27f9ebb8e14d19ad2a51415c 100644
--- a/chrome/browser/android/chrome_feature_list.cc
+++ b/chrome/browser/android/chrome_feature_list.cc
@@ -37,12 +37,11 @@ const base::Feature* kFeaturesExposedToJava[] = {
&features::kSimplifiedFullscreenUI,
&features::kWebPayments,
&kAndroidPayIntegrationV1,
+ &kCCTExternalLinkHandling,
&kChromeHomeFeature,
&kDownloadsUiFeature,
&kImportantSitesInCBD,
- &ntp_snippets::kContentSuggestionsFeature,
- &ntp_snippets::kSaveToOfflineFeature,
- &ntp_snippets::kSectionDismissalFeature,
+ &kNoCreditCardAbort,
&kNTPFakeOmniboxTextFeature,
&kNTPOfflinePagesFeature,
&kPhysicalWebFeature,
@@ -51,9 +50,11 @@ const base::Feature* kFeaturesExposedToJava[] = {
&kSpecialLocaleFeature,
&kSpecialLocaleWrapper,
&kTabReparenting,
- &kCCTExternalLinkHandling,
- &offline_pages::kOfflinePagesBackgroundLoadingFeature,
+ &ntp_snippets::kContentSuggestionsFeature,
+ &ntp_snippets::kSaveToOfflineFeature,
+ &ntp_snippets::kSectionDismissalFeature,
&offline_pages::kBackgroundLoaderForDownloadsFeature,
+ &offline_pages::kOfflinePagesBackgroundLoadingFeature,
&offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421.
&offline_pages::kOfflinePagesSharingFeature,
&password_manager::features::kViewPasswords,
@@ -64,6 +65,9 @@ const base::Feature* kFeaturesExposedToJava[] = {
const base::Feature kAndroidPayIntegrationV1{"AndroidPayIntegrationV1",
base::FEATURE_ENABLED_BY_DEFAULT};
+const base::Feature kCCTExternalLinkHandling{"CCTExternalLinkHandling",
+ base::FEATURE_ENABLED_BY_DEFAULT};
+
const base::Feature kChromeHomeFeature{"ChromeHome",
base::FEATURE_DISABLED_BY_DEFAULT};
@@ -73,6 +77,9 @@ const base::Feature kDownloadsUiFeature{"DownloadsUi",
const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD",
base::FEATURE_DISABLED_BY_DEFAULT};
+const base::Feature kNoCreditCardAbort{"NoCreditCardAbort",
+ base::FEATURE_DISABLED_BY_DEFAULT};
+
const base::Feature kNTPOfflinePagesFeature{"NTPOfflinePages",
base::FEATURE_DISABLED_BY_DEFAULT};
@@ -97,9 +104,6 @@ const base::Feature kSpecialLocaleWrapper{"SpecialLocaleWrapper",
const base::Feature kTabReparenting{"TabReparenting",
base::FEATURE_ENABLED_BY_DEFAULT};
-const base::Feature kCCTExternalLinkHandling{"CCTExternalLinkHandling",
- base::FEATURE_ENABLED_BY_DEFAULT};
-
const base::Feature kUserMediaScreenCapturing{
"UserMediaScreenCapturing", base::FEATURE_DISABLED_BY_DEFAULT};
« no previous file with comments | « chrome/browser/android/chrome_feature_list.h ('k') | testing/variations/fieldtrial_testing_config.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698