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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 // Enables the Feature Policy framework for granting and removing access to | 42 // Enables the Feature Policy framework for granting and removing access to |
43 // other features through HTTP headers. | 43 // other features through HTTP headers. |
44 const base::Feature kFeaturePolicy{"FeaturePolicy", | 44 const base::Feature kFeaturePolicy{"FeaturePolicy", |
45 base::FEATURE_DISABLED_BY_DEFAULT}; | 45 base::FEATURE_DISABLED_BY_DEFAULT}; |
46 | 46 |
47 // Enables a blink::FontCache optimization that reuses a font to serve different | 47 // Enables a blink::FontCache optimization that reuses a font to serve different |
48 // size of font. | 48 // size of font. |
49 const base::Feature kFontCacheScaling{"FontCacheScaling", | 49 const base::Feature kFontCacheScaling{"FontCacheScaling", |
50 base::FEATURE_DISABLED_BY_DEFAULT}; | 50 base::FEATURE_DISABLED_BY_DEFAULT}; |
51 | 51 |
| 52 // Enables extended Gamepad API features like motion tracking and haptics. |
| 53 const base::Feature kGamepadExtensions{"GamepadExtensions", |
| 54 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 55 |
52 // Can main thread be pipelined with activation. Always disabled for devices | 56 // Can main thread be pipelined with activation. Always disabled for devices |
53 // with fewer than 4 cores irrespective of this flag. Can also be overridden by | 57 // with fewer than 4 cores irrespective of this flag. Can also be overridden by |
54 // --enable(disable)-main-frame-before-activation command line flag. | 58 // --enable(disable)-main-frame-before-activation command line flag. |
55 const base::Feature kMainFrameBeforeActivation{ | 59 const base::Feature kMainFrameBeforeActivation{ |
56 "MainFrameBeforeActivation", base::FEATURE_DISABLED_BY_DEFAULT}; | 60 "MainFrameBeforeActivation", base::FEATURE_DISABLED_BY_DEFAULT}; |
57 | 61 |
58 // FeatureList definition for trials to enable the download button on | 62 // FeatureList definition for trials to enable the download button on |
59 // MediaDocument. | 63 // MediaDocument. |
60 const base::Feature kMediaDocumentDownloadButton{ | 64 const base::Feature kMediaDocumentDownloadButton{ |
61 "MediaDocumentDownloadButton", | 65 "MediaDocumentDownloadButton", |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 #endif | 193 #endif |
190 | 194 |
191 #if defined(OS_WIN) | 195 #if defined(OS_WIN) |
192 // Emergency "off switch" for new Windows sandbox security mitigation, | 196 // Emergency "off switch" for new Windows sandbox security mitigation, |
193 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. | 197 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. |
194 const base::Feature kWinSboxDisableExtensionPoints{ | 198 const base::Feature kWinSboxDisableExtensionPoints{ |
195 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; | 199 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; |
196 #endif | 200 #endif |
197 | 201 |
198 } // namespace features | 202 } // namespace features |
OLD | NEW |