| 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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 | 325 |
| 326 // Make sendBeacon throw for a Blob with a non simple type. | 326 // Make sendBeacon throw for a Blob with a non simple type. |
| 327 const base::Feature kSendBeaconThrowForBlobWithNonSimpleType{ | 327 const base::Feature kSendBeaconThrowForBlobWithNonSimpleType{ |
| 328 "SendBeaconThrowForBlobWithNonSimpleType", | 328 "SendBeaconThrowForBlobWithNonSimpleType", |
| 329 base::FEATURE_DISABLED_BY_DEFAULT}; | 329 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 330 | 330 |
| 331 #if defined(OS_ANDROID) | 331 #if defined(OS_ANDROID) |
| 332 // Autofill Accessibility in Android. | 332 // Autofill Accessibility in Android. |
| 333 // crbug.com/627860 | 333 // crbug.com/627860 |
| 334 const base::Feature kAndroidAutofillAccessibility{ | 334 const base::Feature kAndroidAutofillAccessibility{ |
| 335 "AndroidAutofillAccessibility", base::FEATURE_DISABLED_BY_DEFAULT}; | 335 "AndroidAutofillAccessibility", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 336 | 336 |
| 337 // FeatureList definition for the Seccomp field trial. | 337 // FeatureList definition for the Seccomp field trial. |
| 338 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", | 338 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", |
| 339 base::FEATURE_ENABLED_BY_DEFAULT}; | 339 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 340 | 340 |
| 341 // Service worker based payment apps as defined by w3c here: | 341 // Service worker based payment apps as defined by w3c here: |
| 342 // https://w3c.github.io/webpayments-payment-apps-api/ | 342 // https://w3c.github.io/webpayments-payment-apps-api/ |
| 343 const base::Feature kServiceWorkerPaymentApps{ | 343 const base::Feature kServiceWorkerPaymentApps{ |
| 344 "ServiceWorkerPaymentApps", | 344 "ServiceWorkerPaymentApps", |
| 345 base::FEATURE_DISABLED_BY_DEFAULT}; | 345 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 346 | 346 |
| 347 // Controls whether the WebNFC API is enabled: | 347 // Controls whether the WebNFC API is enabled: |
| 348 // https://w3c.github.io/web-nfc/ | 348 // https://w3c.github.io/web-nfc/ |
| 349 const base::Feature kWebNfc{"WebNFC", base::FEATURE_DISABLED_BY_DEFAULT}; | 349 const base::Feature kWebNfc{"WebNFC", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 350 #endif | 350 #endif |
| 351 | 351 |
| 352 #if defined(OS_WIN) | 352 #if defined(OS_WIN) |
| 353 // Emergency "off switch" for new Windows sandbox security mitigation, | 353 // Emergency "off switch" for new Windows sandbox security mitigation, |
| 354 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. | 354 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. |
| 355 const base::Feature kWinSboxDisableExtensionPoints{ | 355 const base::Feature kWinSboxDisableExtensionPoints{ |
| 356 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; | 356 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 357 #endif | 357 #endif |
| 358 | 358 |
| 359 } // namespace features | 359 } // namespace features |
| OLD | NEW |