| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 base::FEATURE_ENABLED_BY_DEFAULT}; | 139 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 140 | 140 |
| 141 // Use IME's own thread instead of using main UI thread. It also means that | 141 // Use IME's own thread instead of using main UI thread. It also means that |
| 142 // we will not use replica editor and do a round trip to renderer to synchronize | 142 // we will not use replica editor and do a round trip to renderer to synchronize |
| 143 // with Blink data. | 143 // with Blink data. |
| 144 const base::Feature kImeThread{"ImeThread", base::FEATURE_DISABLED_BY_DEFAULT}; | 144 const base::Feature kImeThread{"ImeThread", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 145 | 145 |
| 146 // FeatureList definition for the Seccomp field trial. | 146 // FeatureList definition for the Seccomp field trial. |
| 147 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", | 147 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", |
| 148 base::FEATURE_DISABLED_BY_DEFAULT}; | 148 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 149 |
| 150 // The JavaScript API for payments on the web. |
| 151 const base::Feature kWebPayments{"WebPayments", |
| 152 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 153 |
| 149 #endif | 154 #endif |
| 150 | 155 |
| 151 #if defined(OS_WIN) | 156 #if defined(OS_WIN) |
| 152 // Emergency "off switch" for new Windows sandbox security mitigation, | 157 // Emergency "off switch" for new Windows sandbox security mitigation, |
| 153 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. | 158 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. |
| 154 const base::Feature kWinSboxDisableExtensionPoints{ | 159 const base::Feature kWinSboxDisableExtensionPoints{ |
| 155 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; | 160 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 156 #endif | 161 #endif |
| 157 | 162 |
| 158 } // namespace features | 163 } // namespace features |
| OLD | NEW |