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

Side by Side Diff: chrome/browser/android/chrome_feature_list.cc

Issue 2872273003: Enable 3rd party Android payment apps by default. (Closed)
Patch Set: 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 | no next file » | 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 #include "chrome/browser/android/chrome_feature_list.h" 5 #include "chrome/browser/android/chrome_feature_list.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 } // namespace 105 } // namespace
106 106
107 // Alphabetical: 107 // Alphabetical:
108 const base::Feature kAndroidPayIntegrationV1{"AndroidPayIntegrationV1", 108 const base::Feature kAndroidPayIntegrationV1{"AndroidPayIntegrationV1",
109 base::FEATURE_ENABLED_BY_DEFAULT}; 109 base::FEATURE_ENABLED_BY_DEFAULT};
110 110
111 const base::Feature kAndroidPayIntegrationV2{"AndroidPayIntegrationV2", 111 const base::Feature kAndroidPayIntegrationV2{"AndroidPayIntegrationV2",
112 base::FEATURE_ENABLED_BY_DEFAULT}; 112 base::FEATURE_ENABLED_BY_DEFAULT};
113 113
114 const base::Feature kAndroidPaymentApps{"AndroidPaymentApps", 114 const base::Feature kAndroidPaymentApps{"AndroidPaymentApps",
115 base::FEATURE_DISABLED_BY_DEFAULT}; 115 base::FEATURE_ENABLED_BY_DEFAULT};
116 116
117 const base::Feature kCCTBackgroundTab{"CCTBackgroundTab", 117 const base::Feature kCCTBackgroundTab{"CCTBackgroundTab",
118 base::FEATURE_DISABLED_BY_DEFAULT}; 118 base::FEATURE_DISABLED_BY_DEFAULT};
119 119
120 const base::Feature kCCTExternalLinkHandling{"CCTExternalLinkHandling", 120 const base::Feature kCCTExternalLinkHandling{"CCTExternalLinkHandling",
121 base::FEATURE_ENABLED_BY_DEFAULT}; 121 base::FEATURE_ENABLED_BY_DEFAULT};
122 122
123 const base::Feature kCCTPostMessageAPI{"CCTPostMessageAPI", 123 const base::Feature kCCTPostMessageAPI{"CCTPostMessageAPI",
124 base::FEATURE_ENABLED_BY_DEFAULT}; 124 base::FEATURE_ENABLED_BY_DEFAULT};
125 125
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name, 284 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name,
285 jdefault_value); 285 jdefault_value);
286 } 286 }
287 287
288 bool RegisterChromeFeatureListJni(JNIEnv* env) { 288 bool RegisterChromeFeatureListJni(JNIEnv* env) {
289 return RegisterNativesImpl(env); 289 return RegisterNativesImpl(env);
290 } 290 }
291 291
292 } // namespace android 292 } // namespace android
293 } // namespace chrome 293 } // namespace chrome
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698