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

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: The patch is only for flag definition and wheel scroll latiching. Created 4 years, 5 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 // which permits servers to allow the use of stale resources while revalidation 112 // which permits servers to allow the use of stale resources while revalidation
113 // proceeds in the background. See http://crbug.com/348877 113 // proceeds in the background. See http://crbug.com/348877
114 const base::Feature kStaleWhileRevalidate{"StaleWhileRevalidate2", 114 const base::Feature kStaleWhileRevalidate{"StaleWhileRevalidate2",
115 base::FEATURE_DISABLED_BY_DEFAULT}; 115 base::FEATURE_DISABLED_BY_DEFAULT};
116 116
117 // Enables token binding 117 // Enables token binding
118 // (https://www.ietf.org/id/draft-ietf-tokbind-protocol-04.txt). 118 // (https://www.ietf.org/id/draft-ietf-tokbind-protocol-04.txt).
119 const base::Feature kTokenBinding{"token-binding", 119 const base::Feature kTokenBinding{"token-binding",
120 base::FEATURE_DISABLED_BY_DEFAULT}; 120 base::FEATURE_DISABLED_BY_DEFAULT};
121 121
122 // Enables touchpad scroll latching. For now, it works only for Mac.
tdresser 2016/07/25 16:46:55 Are the comment and flag name correct? I'm not su
sahel 2016/07/25 17:58:26 Done.
123 const base::Feature kTouchpadScrollLatching{"TouchpadScrollLatching",
124 base::FEATURE_DISABLED_BY_DEFAULT};
125
122 // Weak MemoryCache (https://crbug.com/603462). 126 // Weak MemoryCache (https://crbug.com/603462).
123 const base::Feature kWeakMemoryCache{"WeakMemoryCache", 127 const base::Feature kWeakMemoryCache{"WeakMemoryCache",
124 base::FEATURE_DISABLED_BY_DEFAULT}; 128 base::FEATURE_DISABLED_BY_DEFAULT};
125 129
126 // If WebGL Image Chromium is allowed, this feature controls whether it is 130 // If WebGL Image Chromium is allowed, this feature controls whether it is
127 // enabled. 131 // enabled.
128 const base::Feature kWebGLImageChromium{"WebGLImageChromium", 132 const base::Feature kWebGLImageChromium{"WebGLImageChromium",
129 base::FEATURE_ENABLED_BY_DEFAULT}; 133 base::FEATURE_ENABLED_BY_DEFAULT};
130 134
131 // Makes WebRTC use ECDSA certs by default (i.e., when no cert type was 135 // Makes WebRTC use ECDSA certs by default (i.e., when no cert type was
(...skipping 21 matching lines...) Expand all
153 #endif 157 #endif
154 158
155 #if defined(OS_WIN) 159 #if defined(OS_WIN)
156 // Emergency "off switch" for new Windows sandbox security mitigation, 160 // Emergency "off switch" for new Windows sandbox security mitigation,
157 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. 161 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE.
158 const base::Feature kWinSboxDisableExtensionPoints{ 162 const base::Feature kWinSboxDisableExtensionPoints{
159 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; 163 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT};
160 #endif 164 #endif
161 165
162 } // namespace features 166 } // namespace features
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698