| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 }; | 104 }; |
| 105 | 105 |
| 106 // Enables the memory coordinator. | 106 // Enables the memory coordinator. |
| 107 // WARNING: | 107 // WARNING: |
| 108 // The memory coordinator is not ready for use and enabling this may cause | 108 // The memory coordinator is not ready for use and enabling this may cause |
| 109 // unexpected memory regression at this point. Please do not enable this. | 109 // unexpected memory regression at this point. Please do not enable this. |
| 110 const base::Feature kMemoryCoordinator { | 110 const base::Feature kMemoryCoordinator { |
| 111 "MemoryCoordinator", base::FEATURE_DISABLED_BY_DEFAULT | 111 "MemoryCoordinator", base::FEATURE_DISABLED_BY_DEFAULT |
| 112 }; | 112 }; |
| 113 | 113 |
| 114 // Non-validating reload for desktop. | |
| 115 // See https://crbug.com/591245 | |
| 116 const base::Feature kNonValidatingReloadOnNormalReload{ | |
| 117 "NonValidatingReloadOnNormalReload", base::FEATURE_ENABLED_BY_DEFAULT}; | |
| 118 | |
| 119 // Kill switch for Web Notification content images. | 114 // Kill switch for Web Notification content images. |
| 120 const base::Feature kNotificationContentImage{"NotificationContentImage", | 115 const base::Feature kNotificationContentImage{"NotificationContentImage", |
| 121 base::FEATURE_ENABLED_BY_DEFAULT}; | 116 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 122 | 117 |
| 123 // An experiment to optimize resource loading IPC for small resources. | 118 // An experiment to optimize resource loading IPC for small resources. |
| 124 // http://crbug.com/580928 | 119 // http://crbug.com/580928 |
| 125 const base::Feature kOptimizeLoadingIPCForSmallResources{ | 120 const base::Feature kOptimizeLoadingIPCForSmallResources{ |
| 126 "OptimizeLoadingIPCForSmallResources", | 121 "OptimizeLoadingIPCForSmallResources", |
| 127 base::FEATURE_DISABLED_BY_DEFAULT}; | 122 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 128 | 123 |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 #endif | 249 #endif |
| 255 | 250 |
| 256 #if defined(OS_WIN) | 251 #if defined(OS_WIN) |
| 257 // Emergency "off switch" for new Windows sandbox security mitigation, | 252 // Emergency "off switch" for new Windows sandbox security mitigation, |
| 258 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. | 253 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. |
| 259 const base::Feature kWinSboxDisableExtensionPoints{ | 254 const base::Feature kWinSboxDisableExtensionPoints{ |
| 260 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; | 255 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 261 #endif | 256 #endif |
| 262 | 257 |
| 263 } // namespace features | 258 } // namespace features |
| OLD | NEW |