| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 // launched. This is in response to a bug seen on Windows. See | 57 // launched. This is in response to a bug seen on Windows. See |
| 58 // https://crbug.com/560446 | 58 // https://crbug.com/560446 |
| 59 const base::Feature kUpdateRendererPriorityOnStartup{ | 59 const base::Feature kUpdateRendererPriorityOnStartup{ |
| 60 "UpdateRendererPriorityOnStartup", base::FEATURE_ENABLED_BY_DEFAULT}; | 60 "UpdateRendererPriorityOnStartup", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 61 | 61 |
| 62 // An experimental User Agent Intervention on WebFonts loading. | 62 // An experimental User Agent Intervention on WebFonts loading. |
| 63 const base::Feature kWebFontsIntervention{"WebFontsIntervention", | 63 const base::Feature kWebFontsIntervention{"WebFontsIntervention", |
| 64 base::FEATURE_DISABLED_BY_DEFAULT}; | 64 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 65 | 65 |
| 66 #if defined(OS_ANDROID) | 66 #if defined(OS_ANDROID) |
| 67 // Use IME's own thread instead of using main UI thread. It also means that |
| 68 // we will not use replica editor and do a round trip to renderer to synchronize |
| 69 // with Blink data. |
| 70 const base::Feature kImeThread{"ImeThread", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 71 |
| 67 // FeatureList definition for the Seccomp field trial. | 72 // FeatureList definition for the Seccomp field trial. |
| 68 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", | 73 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", |
| 69 base::FEATURE_DISABLED_BY_DEFAULT}; | 74 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 70 #endif | 75 #endif |
| 71 | 76 |
| 72 } // namespace features | 77 } // namespace features |
| OLD | NEW |