| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 const base::Feature kTokenBinding{"token-binding", | 77 const base::Feature kTokenBinding{"token-binding", |
| 78 base::FEATURE_DISABLED_BY_DEFAULT}; | 78 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 79 | 79 |
| 80 // An experimental User Agent Intervention on WebFonts loading. | 80 // An experimental User Agent Intervention on WebFonts loading. |
| 81 const base::Feature kWebFontsInterventionV2{"WebFontsInterventionV2", | 81 const base::Feature kWebFontsInterventionV2{"WebFontsInterventionV2", |
| 82 base::FEATURE_DISABLED_BY_DEFAULT}; | 82 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 83 | 83 |
| 84 // Makes WebRTC use ECDSA certs by default (i.e., when no cert type was | 84 // Makes WebRTC use ECDSA certs by default (i.e., when no cert type was |
| 85 // specified in JS). | 85 // specified in JS). |
| 86 const base::Feature kWebRtcEcdsaDefault {"WebRTC-EnableWebRtcEcdsa", | 86 const base::Feature kWebRtcEcdsaDefault {"WebRTC-EnableWebRtcEcdsa", |
| 87 base::FEATURE_DISABLED_BY_DEFAULT}; | 87 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 88 | 88 |
| 89 // Controls whether the WebUSB API is enabled: | 89 // Controls whether the WebUSB API is enabled: |
| 90 // https://wicg.github.io/webusb | 90 // https://wicg.github.io/webusb |
| 91 const base::Feature kWebUsb{"WebUSB", base::FEATURE_ENABLED_BY_DEFAULT}; | 91 const base::Feature kWebUsb{"WebUSB", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 92 | 92 |
| 93 #if defined(OS_ANDROID) | 93 #if defined(OS_ANDROID) |
| 94 // Use IME's own thread instead of using main UI thread. It also means that | 94 // Use IME's own thread instead of using main UI thread. It also means that |
| 95 // we will not use replica editor and do a round trip to renderer to synchronize | 95 // we will not use replica editor and do a round trip to renderer to synchronize |
| 96 // with Blink data. | 96 // with Blink data. |
| 97 const base::Feature kImeThread{"ImeThread", base::FEATURE_DISABLED_BY_DEFAULT}; | 97 const base::Feature kImeThread{"ImeThread", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 98 | 98 |
| 99 // FeatureList definition for the Seccomp field trial. | 99 // FeatureList definition for the Seccomp field trial. |
| 100 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", | 100 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", |
| 101 base::FEATURE_DISABLED_BY_DEFAULT}; | 101 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 102 #endif | 102 #endif |
| 103 | 103 |
| 104 } // namespace features | 104 } // namespace features |
| OLD | NEW |