| 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 // Enables WebVR experimental rendering optimizations. | 260 // Enables WebVR experimental rendering optimizations. |
| 261 const base::Feature kWebVRExperimentalRendering{ | 261 const base::Feature kWebVRExperimentalRendering{ |
| 262 "WebVRExperimentalRendering", base::FEATURE_DISABLED_BY_DEFAULT}; | 262 "WebVRExperimentalRendering", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 263 | 263 |
| 264 // Make sendBeacon throw for a Blob with a non simple type. | 264 // Make sendBeacon throw for a Blob with a non simple type. |
| 265 const base::Feature kSendBeaconThrowForBlobWithNonSimpleType{ | 265 const base::Feature kSendBeaconThrowForBlobWithNonSimpleType{ |
| 266 "SendBeaconThrowForBlobWithNonSimpleType", | 266 "SendBeaconThrowForBlobWithNonSimpleType", |
| 267 base::FEATURE_DISABLED_BY_DEFAULT}; | 267 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 268 | 268 |
| 269 #if defined(OS_ANDROID) | 269 #if defined(OS_ANDROID) |
| 270 // Autofill Accessibility in Android. |
| 271 // crbug.com/627860 |
| 272 const base::Feature kAndroidAutofillAccessibility{ |
| 273 "AndroidAutofillAccessibility", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 274 |
| 270 // A browsing history manager implementation for Android. | 275 // A browsing history manager implementation for Android. |
| 271 const base::Feature kNativeAndroidHistoryManager{ | 276 const base::Feature kNativeAndroidHistoryManager{ |
| 272 "AndroidHistoryManager", base::FEATURE_DISABLED_BY_DEFAULT}; | 277 "AndroidHistoryManager", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 273 | 278 |
| 274 // FeatureList definition for the Seccomp field trial. | 279 // FeatureList definition for the Seccomp field trial. |
| 275 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", | 280 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", |
| 276 base::FEATURE_ENABLED_BY_DEFAULT}; | 281 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 277 | 282 |
| 278 // Service worker based payment apps as defined by w3c here: | 283 // Service worker based payment apps as defined by w3c here: |
| 279 // https://w3c.github.io/webpayments-payment-apps-api/ | 284 // https://w3c.github.io/webpayments-payment-apps-api/ |
| (...skipping 19 matching lines...) Expand all Loading... |
| 299 #endif // !defined(OS_ANDROID) | 304 #endif // !defined(OS_ANDROID) |
| 300 | 305 |
| 301 #if defined(OS_WIN) | 306 #if defined(OS_WIN) |
| 302 // Emergency "off switch" for new Windows sandbox security mitigation, | 307 // Emergency "off switch" for new Windows sandbox security mitigation, |
| 303 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. | 308 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. |
| 304 const base::Feature kWinSboxDisableExtensionPoints{ | 309 const base::Feature kWinSboxDisableExtensionPoints{ |
| 305 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; | 310 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 306 #endif | 311 #endif |
| 307 | 312 |
| 308 } // namespace features | 313 } // namespace features |
| OLD | NEW |