| 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 #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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |