| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 "SpeculativeLaunchServiceWorker", base::FEATURE_DISABLED_BY_DEFAULT}; | 121 "SpeculativeLaunchServiceWorker", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 122 | 122 |
| 123 // Enables implementation of the Cache-Control: stale-while-revalidate directive | 123 // Enables implementation of the Cache-Control: stale-while-revalidate directive |
| 124 // which permits servers to allow the use of stale resources while revalidation | 124 // which permits servers to allow the use of stale resources while revalidation |
| 125 // proceeds in the background. See http://crbug.com/348877 | 125 // proceeds in the background. See http://crbug.com/348877 |
| 126 const base::Feature kStaleWhileRevalidate{"StaleWhileRevalidate2", | 126 const base::Feature kStaleWhileRevalidate{"StaleWhileRevalidate2", |
| 127 base::FEATURE_DISABLED_BY_DEFAULT}; | 127 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 128 | 128 |
| 129 // Throttle Blink timers in out-of-view cross origin frames. | 129 // Throttle Blink timers in out-of-view cross origin frames. |
| 130 const base::Feature kTimerThrottlingForHiddenFrames{ | 130 const base::Feature kTimerThrottlingForHiddenFrames{ |
| 131 "TimerThrottlingForHiddenFrames", base::FEATURE_ENABLED_BY_DEFAULT}; | 131 "TimerThrottlingForHiddenFrames", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 132 | 132 |
| 133 // Enables token binding | 133 // Enables token binding |
| 134 // (https://www.ietf.org/id/draft-ietf-tokbind-protocol-04.txt). | 134 // (https://www.ietf.org/id/draft-ietf-tokbind-protocol-04.txt). |
| 135 const base::Feature kTokenBinding{"token-binding", | 135 const base::Feature kTokenBinding{"token-binding", |
| 136 base::FEATURE_DISABLED_BY_DEFAULT}; | 136 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 137 | 137 |
| 138 // Enables touchpad and wheel scroll latching. | 138 // Enables touchpad and wheel scroll latching. |
| 139 const base::Feature kTouchpadAndWheelScrollLatching{ | 139 const base::Feature kTouchpadAndWheelScrollLatching{ |
| 140 "TouchpadAndWheelScrollLatching", base::FEATURE_DISABLED_BY_DEFAULT}; | 140 "TouchpadAndWheelScrollLatching", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 141 | 141 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 #endif | 183 #endif |
| 184 | 184 |
| 185 #if defined(OS_WIN) | 185 #if defined(OS_WIN) |
| 186 // Emergency "off switch" for new Windows sandbox security mitigation, | 186 // Emergency "off switch" for new Windows sandbox security mitigation, |
| 187 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. | 187 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. |
| 188 const base::Feature kWinSboxDisableExtensionPoints{ | 188 const base::Feature kWinSboxDisableExtensionPoints{ |
| 189 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; | 189 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 190 #endif | 190 #endif |
| 191 | 191 |
| 192 } // namespace features | 192 } // namespace features |
| OLD | NEW |