| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 // Enables purge and suspend. | 159 // Enables purge and suspend. |
| 160 const base::Feature kPurgeAndSuspend{"PurgeAndSuspend", | 160 const base::Feature kPurgeAndSuspend{"PurgeAndSuspend", |
| 161 base::FEATURE_DISABLED_BY_DEFAULT}; | 161 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 162 | 162 |
| 163 // RAF aligned mouse input events support. | 163 // RAF aligned mouse input events support. |
| 164 const base::Feature kRafAlignedMouseInputEvents{ | 164 const base::Feature kRafAlignedMouseInputEvents{ |
| 165 "RafAlignedMouseInput", base::FEATURE_DISABLED_BY_DEFAULT}; | 165 "RafAlignedMouseInput", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 166 | 166 |
| 167 // RAF aligned touch input events support. | 167 // RAF aligned touch input events support. |
| 168 const base::Feature kRafAlignedTouchInputEvents{ | 168 const base::Feature kRafAlignedTouchInputEvents{ |
| 169 "RafAlignedTouchInput", base::FEATURE_DISABLED_BY_DEFAULT}; | 169 "RafAlignedTouchInput", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 170 | 170 |
| 171 // If Pepper 3D Image Chromium is allowed, this feature controls whether it is | 171 // If Pepper 3D Image Chromium is allowed, this feature controls whether it is |
| 172 // enabled. | 172 // enabled. |
| 173 const base::Feature kPepper3DImageChromium { | 173 const base::Feature kPepper3DImageChromium { |
| 174 "Pepper3DImageChromium", | 174 "Pepper3DImageChromium", |
| 175 #if defined(OS_MACOSX) | 175 #if defined(OS_MACOSX) |
| 176 base::FEATURE_ENABLED_BY_DEFAULT | 176 base::FEATURE_ENABLED_BY_DEFAULT |
| 177 #else | 177 #else |
| 178 base::FEATURE_DISABLED_BY_DEFAULT | 178 base::FEATURE_DISABLED_BY_DEFAULT |
| 179 #endif | 179 #endif |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 #endif // !defined(OS_ANDROID) | 305 #endif // !defined(OS_ANDROID) |
| 306 | 306 |
| 307 #if defined(OS_WIN) | 307 #if defined(OS_WIN) |
| 308 // Emergency "off switch" for new Windows sandbox security mitigation, | 308 // Emergency "off switch" for new Windows sandbox security mitigation, |
| 309 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. | 309 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. |
| 310 const base::Feature kWinSboxDisableExtensionPoints{ | 310 const base::Feature kWinSboxDisableExtensionPoints{ |
| 311 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; | 311 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 312 #endif | 312 #endif |
| 313 | 313 |
| 314 } // namespace features | 314 } // namespace features |
| OLD | NEW |