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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 // service_worker_version.h for the details. | 183 // service_worker_version.h for the details. |
184 const base::Feature kServiceWorkerNavigationPreload{ | 184 const base::Feature kServiceWorkerNavigationPreload{ |
185 "ServiceWorkerNavigationPreload", base::FEATURE_ENABLED_BY_DEFAULT}; | 185 "ServiceWorkerNavigationPreload", base::FEATURE_ENABLED_BY_DEFAULT}; |
186 | 186 |
187 // http://tc39.github.io/ecmascript_sharedmem/shmem.html | 187 // http://tc39.github.io/ecmascript_sharedmem/shmem.html |
188 const base::Feature kSharedArrayBuffer{"SharedArrayBuffer", | 188 const base::Feature kSharedArrayBuffer{"SharedArrayBuffer", |
189 base::FEATURE_DISABLED_BY_DEFAULT}; | 189 base::FEATURE_DISABLED_BY_DEFAULT}; |
190 | 190 |
191 // Paint invalidation based on slimming paint. See https://goo.gl/eQczQW | 191 // Paint invalidation based on slimming paint. See https://goo.gl/eQczQW |
192 const base::Feature kSlimmingPaintInvalidation{ | 192 const base::Feature kSlimmingPaintInvalidation{ |
193 "SlimmingPaintInvalidation", base::FEATURE_ENABLED_BY_DEFAULT}; | 193 "SlimmingPaintInvalidation", base::FEATURE_DISABLED_BY_DEFAULT}; |
194 | 194 |
195 // Speculatively launches Service Workers on mouse/touch events. | 195 // Speculatively launches Service Workers on mouse/touch events. |
196 const base::Feature kSpeculativeLaunchServiceWorker{ | 196 const base::Feature kSpeculativeLaunchServiceWorker{ |
197 "SpeculativeLaunchServiceWorker", base::FEATURE_DISABLED_BY_DEFAULT}; | 197 "SpeculativeLaunchServiceWorker", base::FEATURE_DISABLED_BY_DEFAULT}; |
198 | 198 |
199 // Throttle Blink timers in out-of-view cross origin frames. | 199 // Throttle Blink timers in out-of-view cross origin frames. |
200 const base::Feature kTimerThrottlingForHiddenFrames{ | 200 const base::Feature kTimerThrottlingForHiddenFrames{ |
201 "TimerThrottlingForHiddenFrames", base::FEATURE_ENABLED_BY_DEFAULT}; | 201 "TimerThrottlingForHiddenFrames", base::FEATURE_ENABLED_BY_DEFAULT}; |
202 | 202 |
203 // Enables token binding | 203 // Enables token binding |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 #endif // !defined(OS_ANDROID) | 288 #endif // !defined(OS_ANDROID) |
289 | 289 |
290 #if defined(OS_WIN) | 290 #if defined(OS_WIN) |
291 // Emergency "off switch" for new Windows sandbox security mitigation, | 291 // Emergency "off switch" for new Windows sandbox security mitigation, |
292 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. | 292 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. |
293 const base::Feature kWinSboxDisableExtensionPoints{ | 293 const base::Feature kWinSboxDisableExtensionPoints{ |
294 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; | 294 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; |
295 #endif | 295 #endif |
296 | 296 |
297 } // namespace features | 297 } // namespace features |
OLD | NEW |