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

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

Issue 2421263003: Enable scroll anchoring. (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 | third_party/WebKit/LayoutTests/virtual/stable/webexposed/css-properties-as-js-properties-expected.txt » ('j') | 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 // enabled. 148 // enabled.
149 const base::Feature kPepper3DImageChromium{"Pepper3DImageChromium", 149 const base::Feature kPepper3DImageChromium{"Pepper3DImageChromium",
150 base::FEATURE_ENABLED_BY_DEFAULT}; 150 base::FEATURE_ENABLED_BY_DEFAULT};
151 151
152 // Throttle Blink's rendering pipeline based on frame visibility. 152 // Throttle Blink's rendering pipeline based on frame visibility.
153 const base::Feature kRenderingPipelineThrottling{ 153 const base::Feature kRenderingPipelineThrottling{
154 "RenderingPipelineThrottling", base::FEATURE_ENABLED_BY_DEFAULT}; 154 "RenderingPipelineThrottling", base::FEATURE_ENABLED_BY_DEFAULT};
155 155
156 // Scrolls to compensate for layout movements (bit.ly/scroll-anchoring). 156 // Scrolls to compensate for layout movements (bit.ly/scroll-anchoring).
157 const base::Feature kScrollAnchoring{"ScrollAnchoring", 157 const base::Feature kScrollAnchoring{"ScrollAnchoring",
158 base::FEATURE_DISABLED_BY_DEFAULT}; 158 base::FEATURE_ENABLED_BY_DEFAULT};
159 159
160 // http://tc39.github.io/ecmascript_sharedmem/shmem.html 160 // http://tc39.github.io/ecmascript_sharedmem/shmem.html
161 const base::Feature kSharedArrayBuffer{"SharedArrayBuffer", 161 const base::Feature kSharedArrayBuffer{"SharedArrayBuffer",
162 base::FEATURE_DISABLED_BY_DEFAULT}; 162 base::FEATURE_DISABLED_BY_DEFAULT};
163 163
164 // Speculatively launches Service Workers on mouse/touch events. 164 // Speculatively launches Service Workers on mouse/touch events.
165 const base::Feature kSpeculativeLaunchServiceWorker{ 165 const base::Feature kSpeculativeLaunchServiceWorker{
166 "SpeculativeLaunchServiceWorker", base::FEATURE_DISABLED_BY_DEFAULT}; 166 "SpeculativeLaunchServiceWorker", base::FEATURE_DISABLED_BY_DEFAULT};
167 167
168 // Enables implementation of the Cache-Control: stale-while-revalidate directive 168 // Enables implementation of the Cache-Control: stale-while-revalidate directive
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 #endif 234 #endif
235 235
236 #if defined(OS_WIN) 236 #if defined(OS_WIN)
237 // Emergency "off switch" for new Windows sandbox security mitigation, 237 // Emergency "off switch" for new Windows sandbox security mitigation,
238 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. 238 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE.
239 const base::Feature kWinSboxDisableExtensionPoints{ 239 const base::Feature kWinSboxDisableExtensionPoints{
240 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; 240 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT};
241 #endif 241 #endif
242 242
243 } // namespace features 243 } // namespace features
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/virtual/stable/webexposed/css-properties-as-js-properties-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698