Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(302)

Side by Side Diff: content/public/common/content_features.cc

Issue 2358383003: Disable hidden timer throttling (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 "SpeculativeLaunchServiceWorker", base::FEATURE_DISABLED_BY_DEFAULT}; 141 "SpeculativeLaunchServiceWorker", base::FEATURE_DISABLED_BY_DEFAULT};
142 142
143 // Enables implementation of the Cache-Control: stale-while-revalidate directive 143 // Enables implementation of the Cache-Control: stale-while-revalidate directive
144 // which permits servers to allow the use of stale resources while revalidation 144 // which permits servers to allow the use of stale resources while revalidation
145 // proceeds in the background. See http://crbug.com/348877 145 // proceeds in the background. See http://crbug.com/348877
146 const base::Feature kStaleWhileRevalidate{"StaleWhileRevalidate2", 146 const base::Feature kStaleWhileRevalidate{"StaleWhileRevalidate2",
147 base::FEATURE_DISABLED_BY_DEFAULT}; 147 base::FEATURE_DISABLED_BY_DEFAULT};
148 148
149 // Throttle Blink timers in out-of-view cross origin frames. 149 // Throttle Blink timers in out-of-view cross origin frames.
150 const base::Feature kTimerThrottlingForHiddenFrames{ 150 const base::Feature kTimerThrottlingForHiddenFrames{
151 "TimerThrottlingForHiddenFrames", base::FEATURE_ENABLED_BY_DEFAULT}; 151 "TimerThrottlingForHiddenFrames", base::FEATURE_DISABLED_BY_DEFAULT};
152 152
153 // Enables token binding 153 // Enables token binding
154 // (https://www.ietf.org/id/draft-ietf-tokbind-protocol-04.txt). 154 // (https://www.ietf.org/id/draft-ietf-tokbind-protocol-04.txt).
155 const base::Feature kTokenBinding{"token-binding", 155 const base::Feature kTokenBinding{"token-binding",
156 base::FEATURE_DISABLED_BY_DEFAULT}; 156 base::FEATURE_DISABLED_BY_DEFAULT};
157 157
158 // Enables touchpad and wheel scroll latching. 158 // Enables touchpad and wheel scroll latching.
159 const base::Feature kTouchpadAndWheelScrollLatching{ 159 const base::Feature kTouchpadAndWheelScrollLatching{
160 "TouchpadAndWheelScrollLatching", base::FEATURE_DISABLED_BY_DEFAULT}; 160 "TouchpadAndWheelScrollLatching", base::FEATURE_DISABLED_BY_DEFAULT};
161 161
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 #endif 199 #endif
200 200
201 #if defined(OS_WIN) 201 #if defined(OS_WIN)
202 // Emergency "off switch" for new Windows sandbox security mitigation, 202 // Emergency "off switch" for new Windows sandbox security mitigation,
203 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. 203 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE.
204 const base::Feature kWinSboxDisableExtensionPoints{ 204 const base::Feature kWinSboxDisableExtensionPoints{
205 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; 205 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT};
206 #endif 206 #endif
207 207
208 } // namespace features 208 } // namespace features
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698