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

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

Issue 2158423002: Wheel scroll latching enabled behind flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 // which permits servers to allow the use of stale resources while revalidation 120 // which permits servers to allow the use of stale resources while revalidation
121 // proceeds in the background. See http://crbug.com/348877 121 // proceeds in the background. See http://crbug.com/348877
122 const base::Feature kStaleWhileRevalidate{"StaleWhileRevalidate2", 122 const base::Feature kStaleWhileRevalidate{"StaleWhileRevalidate2",
123 base::FEATURE_DISABLED_BY_DEFAULT}; 123 base::FEATURE_DISABLED_BY_DEFAULT};
124 124
125 // Enables token binding 125 // Enables token binding
126 // (https://www.ietf.org/id/draft-ietf-tokbind-protocol-04.txt). 126 // (https://www.ietf.org/id/draft-ietf-tokbind-protocol-04.txt).
127 const base::Feature kTokenBinding{"token-binding", 127 const base::Feature kTokenBinding{"token-binding",
128 base::FEATURE_DISABLED_BY_DEFAULT}; 128 base::FEATURE_DISABLED_BY_DEFAULT};
129 129
130 // Enables touchpad and wheel scroll latching.
131 const base::Feature kTouchpadAndWheelScrollLatching{
132 "TouchpadAndWheelScrollLatching", base::FEATURE_DISABLED_BY_DEFAULT};
133
130 // Weak MemoryCache (https://crbug.com/603462). 134 // Weak MemoryCache (https://crbug.com/603462).
131 const base::Feature kWeakMemoryCache{"WeakMemoryCache", 135 const base::Feature kWeakMemoryCache{"WeakMemoryCache",
132 base::FEATURE_DISABLED_BY_DEFAULT}; 136 base::FEATURE_DISABLED_BY_DEFAULT};
133 137
134 // If WebGL Image Chromium is allowed, this feature controls whether it is 138 // If WebGL Image Chromium is allowed, this feature controls whether it is
135 // enabled. 139 // enabled.
136 const base::Feature kWebGLImageChromium{"WebGLImageChromium", 140 const base::Feature kWebGLImageChromium{"WebGLImageChromium",
137 base::FEATURE_ENABLED_BY_DEFAULT}; 141 base::FEATURE_ENABLED_BY_DEFAULT};
138 142
139 // Makes WebRTC use ECDSA certs by default (i.e., when no cert type was 143 // Makes WebRTC use ECDSA certs by default (i.e., when no cert type was
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 #endif 175 #endif
172 176
173 #if defined(OS_WIN) 177 #if defined(OS_WIN)
174 // Emergency "off switch" for new Windows sandbox security mitigation, 178 // Emergency "off switch" for new Windows sandbox security mitigation,
175 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. 179 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE.
176 const base::Feature kWinSboxDisableExtensionPoints{ 180 const base::Feature kWinSboxDisableExtensionPoints{
177 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; 181 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT};
178 #endif 182 #endif
179 183
180 } // namespace features 184 } // namespace features
OLDNEW
« no previous file with comments | « content/public/common/content_features.h ('k') | third_party/WebKit/LayoutTests/TestExpectations » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698