Chromium Code Reviews| 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 // unexpected memory regression at this point. Please do not enable this. | 104 // unexpected memory regression at this point. Please do not enable this. |
| 105 const base::Feature kMemoryCoordinator { | 105 const base::Feature kMemoryCoordinator { |
| 106 "MemoryCoordinator", base::FEATURE_DISABLED_BY_DEFAULT | 106 "MemoryCoordinator", base::FEATURE_DISABLED_BY_DEFAULT |
| 107 }; | 107 }; |
| 108 | 108 |
| 109 // Non-validating reload for desktop. | 109 // Non-validating reload for desktop. |
| 110 // See https://crbug.com/591245 | 110 // See https://crbug.com/591245 |
| 111 const base::Feature kNonValidatingReloadOnNormalReload{ | 111 const base::Feature kNonValidatingReloadOnNormalReload{ |
| 112 "NonValidatingReloadOnNormalReload", base::FEATURE_ENABLED_BY_DEFAULT}; | 112 "NonValidatingReloadOnNormalReload", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 113 | 113 |
| 114 // Kill switch for Web Notification content images. | |
| 115 const base::Feature kNotificationImage{"NotificationImage", | |
|
Peter Beverloo
2016/11/15 19:39:20
Again: "Image" will be very ambiguous for readers
johnme
2016/11/16 00:33:11
Done (ContentImage).
| |
| 116 base::FEATURE_ENABLED_BY_DEFAULT}; | |
| 117 | |
| 114 // An experiment to optimize resource loading IPC for small resources. | 118 // An experiment to optimize resource loading IPC for small resources. |
| 115 // http://crbug.com/580928 | 119 // http://crbug.com/580928 |
| 116 const base::Feature kOptimizeLoadingIPCForSmallResources{ | 120 const base::Feature kOptimizeLoadingIPCForSmallResources{ |
| 117 "OptimizeLoadingIPCForSmallResources", | 121 "OptimizeLoadingIPCForSmallResources", |
| 118 base::FEATURE_DISABLED_BY_DEFAULT}; | 122 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 119 | 123 |
| 120 // Origin Trials for controlling access to feature/API experiments. | 124 // Origin Trials for controlling access to feature/API experiments. |
| 121 const base::Feature kOriginTrials{"OriginTrials", | 125 const base::Feature kOriginTrials{"OriginTrials", |
| 122 base::FEATURE_ENABLED_BY_DEFAULT}; | 126 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 123 | 127 |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 254 #endif | 258 #endif |
| 255 | 259 |
| 256 #if defined(OS_WIN) | 260 #if defined(OS_WIN) |
| 257 // Emergency "off switch" for new Windows sandbox security mitigation, | 261 // Emergency "off switch" for new Windows sandbox security mitigation, |
| 258 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. | 262 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. |
| 259 const base::Feature kWinSboxDisableExtensionPoints{ | 263 const base::Feature kWinSboxDisableExtensionPoints{ |
| 260 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; | 264 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 261 #endif | 265 #endif |
| 262 | 266 |
| 263 } // namespace features | 267 } // namespace features |
| OLD | NEW |