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