| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 "PurgeAndSuspend", | 176 "PurgeAndSuspend", |
| 177 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 177 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
| 178 base::FEATURE_DISABLED_BY_DEFAULT | 178 base::FEATURE_DISABLED_BY_DEFAULT |
| 179 #else | 179 #else |
| 180 base::FEATURE_ENABLED_BY_DEFAULT | 180 base::FEATURE_ENABLED_BY_DEFAULT |
| 181 #endif | 181 #endif |
| 182 }; | 182 }; |
| 183 | 183 |
| 184 // RAF aligned mouse input events support. | 184 // RAF aligned mouse input events support. |
| 185 const base::Feature kRafAlignedMouseInputEvents{ | 185 const base::Feature kRafAlignedMouseInputEvents{ |
| 186 "RafAlignedMouseInput", base::FEATURE_DISABLED_BY_DEFAULT}; | 186 "RafAlignedMouseInput", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 187 | 187 |
| 188 // RAF aligned touch input events support. | 188 // RAF aligned touch input events support. |
| 189 const base::Feature kRafAlignedTouchInputEvents{ | 189 const base::Feature kRafAlignedTouchInputEvents{ |
| 190 "RafAlignedTouchInput", base::FEATURE_ENABLED_BY_DEFAULT}; | 190 "RafAlignedTouchInput", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 191 | 191 |
| 192 // If Pepper 3D Image Chromium is allowed, this feature controls whether it is | 192 // If Pepper 3D Image Chromium is allowed, this feature controls whether it is |
| 193 // enabled. | 193 // enabled. |
| 194 const base::Feature kPepper3DImageChromium { | 194 const base::Feature kPepper3DImageChromium { |
| 195 "Pepper3DImageChromium", | 195 "Pepper3DImageChromium", |
| 196 #if defined(OS_MACOSX) | 196 #if defined(OS_MACOSX) |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 #endif | 346 #endif |
| 347 | 347 |
| 348 #if defined(OS_WIN) | 348 #if defined(OS_WIN) |
| 349 // Emergency "off switch" for new Windows sandbox security mitigation, | 349 // Emergency "off switch" for new Windows sandbox security mitigation, |
| 350 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. | 350 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. |
| 351 const base::Feature kWinSboxDisableExtensionPoints{ | 351 const base::Feature kWinSboxDisableExtensionPoints{ |
| 352 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; | 352 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 353 #endif | 353 #endif |
| 354 | 354 |
| 355 } // namespace features | 355 } // namespace features |
| OLD | NEW |