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

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, 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 base::FEATURE_DISABLED_BY_DEFAULT}; 152 base::FEATURE_DISABLED_BY_DEFAULT};
153 #endif 153 #endif
154 154
155 #if defined(OS_WIN) 155 #if defined(OS_WIN)
156 // Emergency "off switch" for new Windows sandbox security mitigation, 156 // Emergency "off switch" for new Windows sandbox security mitigation,
157 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. 157 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE.
158 const base::Feature kWinSboxDisableExtensionPoints{ 158 const base::Feature kWinSboxDisableExtensionPoints{
159 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; 159 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT};
160 #endif 160 #endif
161 161
162 #if defined(OS_MACOSX)
163 // Enables touchpad scroll latching.
164 // For now, it works only for Mac.
165 const base::Feature kTouchpadScrollLatching{"TouchpadScrollLatching",
166 base::FEATURE_DISABLED_BY_DEFAULT};
167 #endif
168
162 } // namespace features 169 } // namespace features
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698