| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 | 182 |
| 183 // Enables token binding | 183 // Enables token binding |
| 184 // (https://www.ietf.org/id/draft-ietf-tokbind-protocol-04.txt). | 184 // (https://www.ietf.org/id/draft-ietf-tokbind-protocol-04.txt). |
| 185 const base::Feature kTokenBinding{"token-binding", | 185 const base::Feature kTokenBinding{"token-binding", |
| 186 base::FEATURE_DISABLED_BY_DEFAULT}; | 186 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 187 | 187 |
| 188 // Enables touchpad and wheel scroll latching. | 188 // Enables touchpad and wheel scroll latching. |
| 189 const base::Feature kTouchpadAndWheelScrollLatching{ | 189 const base::Feature kTouchpadAndWheelScrollLatching{ |
| 190 "TouchpadAndWheelScrollLatching", base::FEATURE_DISABLED_BY_DEFAULT}; | 190 "TouchpadAndWheelScrollLatching", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 191 | 191 |
| 192 // Enables VR UI. |
| 193 const base::Feature kVrShell{"VrShell", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 194 |
| 192 // Enable WebAssembly. | 195 // Enable WebAssembly. |
| 193 // http://webassembly.org/ | 196 // http://webassembly.org/ |
| 194 const base::Feature kWebAssembly{"WebAssembly", | 197 const base::Feature kWebAssembly{"WebAssembly", |
| 195 base::FEATURE_DISABLED_BY_DEFAULT}; | 198 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 196 | 199 |
| 197 // If WebGL Image Chromium is allowed, this feature controls whether it is | 200 // If WebGL Image Chromium is allowed, this feature controls whether it is |
| 198 // enabled. | 201 // enabled. |
| 199 const base::Feature kWebGLImageChromium{"WebGLImageChromium", | 202 const base::Feature kWebGLImageChromium{"WebGLImageChromium", |
| 200 base::FEATURE_ENABLED_BY_DEFAULT}; | 203 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 201 | 204 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 #endif | 242 #endif |
| 240 | 243 |
| 241 #if defined(OS_WIN) | 244 #if defined(OS_WIN) |
| 242 // Emergency "off switch" for new Windows sandbox security mitigation, | 245 // Emergency "off switch" for new Windows sandbox security mitigation, |
| 243 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. | 246 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. |
| 244 const base::Feature kWinSboxDisableExtensionPoints{ | 247 const base::Feature kWinSboxDisableExtensionPoints{ |
| 245 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; | 248 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 246 #endif | 249 #endif |
| 247 | 250 |
| 248 } // namespace features | 251 } // namespace features |
| OLD | NEW |