| 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 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 // The Experimental Framework for controlling access to API experiments. | 22 // The Experimental Framework for controlling access to API experiments. |
| 23 const base::Feature kExperimentalFramework{"ExperimentalFramework", | 23 const base::Feature kExperimentalFramework{"ExperimentalFramework", |
| 24 base::FEATURE_DISABLED_BY_DEFAULT}; | 24 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 25 | 25 |
| 26 // Enables token binding | 26 // Enables token binding |
| 27 // (https://www.ietf.org/id/draft-ietf-tokbind-protocol-04.txt). | 27 // (https://www.ietf.org/id/draft-ietf-tokbind-protocol-04.txt). |
| 28 const base::Feature kTokenBinding{"token-binding", | 28 const base::Feature kTokenBinding{"token-binding", |
| 29 base::FEATURE_DISABLED_BY_DEFAULT}; | 29 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 30 | 30 |
| 31 // Control whether the priority of a renderer is set when the process is | |
| 32 // launched. This is in response to a bug seen on Windows. See | |
| 33 // https://crbug.com/560446 | |
| 34 const base::Feature kUpdateRendererPriorityOnStartup{ | |
| 35 "UpdateRendererPriorityOnStartup", base::FEATURE_ENABLED_BY_DEFAULT}; | |
| 36 | |
| 37 // An experimental User Agent Intervention on WebFonts loading. | 31 // An experimental User Agent Intervention on WebFonts loading. |
| 38 const base::Feature kWebFontsIntervention{"WebFontsIntervention", | 32 const base::Feature kWebFontsIntervention{"WebFontsIntervention", |
| 39 base::FEATURE_DISABLED_BY_DEFAULT}; | 33 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 40 | 34 |
| 41 #if defined(OS_ANDROID) | 35 #if defined(OS_ANDROID) |
| 42 // FeatureList definition for the Seccomp field trial. | 36 // FeatureList definition for the Seccomp field trial. |
| 43 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", | 37 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", |
| 44 base::FEATURE_DISABLED_BY_DEFAULT}; | 38 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 45 #endif | 39 #endif |
| 46 | 40 |
| 47 } // namespace features | 41 } // namespace features |
| OLD | NEW |