| 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "content/public/common/content_features.h" | 6 #include "content/public/common/content_features.h" |
| 7 | 7 |
| 8 namespace features { | 8 namespace features { |
| 9 | 9 |
| 10 // All features in alphabetical order. | 10 // All features in alphabetical order. |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 "SendBeaconThrowForBlobWithNonSimpleType", | 272 "SendBeaconThrowForBlobWithNonSimpleType", |
| 273 base::FEATURE_DISABLED_BY_DEFAULT}; | 273 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 274 | 274 |
| 275 #if defined(OS_ANDROID) | 275 #if defined(OS_ANDROID) |
| 276 // A browsing history manager implementation for Android. | 276 // A browsing history manager implementation for Android. |
| 277 const base::Feature kNativeAndroidHistoryManager{ | 277 const base::Feature kNativeAndroidHistoryManager{ |
| 278 "AndroidHistoryManager", base::FEATURE_DISABLED_BY_DEFAULT}; | 278 "AndroidHistoryManager", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 279 | 279 |
| 280 // FeatureList definition for the Seccomp field trial. | 280 // FeatureList definition for the Seccomp field trial. |
| 281 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", | 281 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", |
| 282 base::FEATURE_DISABLED_BY_DEFAULT}; | 282 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 283 | 283 |
| 284 // Service worker based payment apps as defined by w3c here: | 284 // Service worker based payment apps as defined by w3c here: |
| 285 // https://w3c.github.io/webpayments-payment-apps-api/ | 285 // https://w3c.github.io/webpayments-payment-apps-api/ |
| 286 const base::Feature kServiceWorkerPaymentApps{ | 286 const base::Feature kServiceWorkerPaymentApps{ |
| 287 "ServiceWorkerPaymentApps", | 287 "ServiceWorkerPaymentApps", |
| 288 base::FEATURE_DISABLED_BY_DEFAULT}; | 288 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 289 | 289 |
| 290 // The JavaScript API for payments on the web. | 290 // The JavaScript API for payments on the web. |
| 291 const base::Feature kWebPayments{"WebPayments", | 291 const base::Feature kWebPayments{"WebPayments", |
| 292 base::FEATURE_ENABLED_BY_DEFAULT}; | 292 base::FEATURE_ENABLED_BY_DEFAULT}; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 305 #endif // !defined(OS_ANDROID) | 305 #endif // !defined(OS_ANDROID) |
| 306 | 306 |
| 307 #if defined(OS_WIN) | 307 #if defined(OS_WIN) |
| 308 // Emergency "off switch" for new Windows sandbox security mitigation, | 308 // Emergency "off switch" for new Windows sandbox security mitigation, |
| 309 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. | 309 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. |
| 310 const base::Feature kWinSboxDisableExtensionPoints{ | 310 const base::Feature kWinSboxDisableExtensionPoints{ |
| 311 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; | 311 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 312 #endif | 312 #endif |
| 313 | 313 |
| 314 } // namespace features | 314 } // namespace features |
| OLD | NEW |