OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/public/common/content_switches.h" | 5 #include "content/public/common/content_switches.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; | 291 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; |
292 | 292 |
293 // Enables experimental feature that maps multiple RenderLayers to | 293 // Enables experimental feature that maps multiple RenderLayers to |
294 // one composited layer to avoid pathological layer counts. | 294 // one composited layer to avoid pathological layer counts. |
295 const char kEnableLayerSquashing[] = | 295 const char kEnableLayerSquashing[] = |
296 "enable-layer-squashing"; | 296 "enable-layer-squashing"; |
297 | 297 |
298 // Enable experimental container node culling. | 298 // Enable experimental container node culling. |
299 const char kEnableContainerCulling[] = "enable-container-culling"; | 299 const char kEnableContainerCulling[] = "enable-container-culling"; |
300 | 300 |
301 // Use a BeginFrame signal from browser to renderer to schedule rendering. | |
302 const char kEnableBeginFrameScheduling[] = "enable-begin-frame-scheduling"; | |
303 | |
304 // Enable the creation of compositing layers when it would prevent LCD text. | 301 // Enable the creation of compositing layers when it would prevent LCD text. |
305 const char kEnablePreferCompositingToLCDText[] = | 302 const char kEnablePreferCompositingToLCDText[] = |
306 "enable-prefer-compositing-to-lcd-text"; | 303 "enable-prefer-compositing-to-lcd-text"; |
307 | 304 |
308 // PlzNavigate: Use the experimental browser-side navigation path. | 305 // PlzNavigate: Use the experimental browser-side navigation path. |
309 const char kEnableBrowserSideNavigation[] = "enable-browser-side-navigation"; | 306 const char kEnableBrowserSideNavigation[] = "enable-browser-side-navigation"; |
310 | 307 |
311 // Enable/Disable the creation of compositing layers for RenderLayers with a | 308 // Enable/Disable the creation of compositing layers for RenderLayers with a |
312 // transition on a property that supports accelerated animation (that is, | 309 // transition on a property that supports accelerated animation (that is, |
313 // opacity, -webkit-transform, and -webkit-filter), even when no animation is | 310 // opacity, -webkit-transform, and -webkit-filter), even when no animation is |
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
942 // Enable the Win32K process mitigation policy for renderer processes which | 939 // Enable the Win32K process mitigation policy for renderer processes which |
943 // prevents them from invoking user32 and gdi32 system calls which enter | 940 // prevents them from invoking user32 and gdi32 system calls which enter |
944 // the kernel. This is only supported on Windows 8 and beyond. | 941 // the kernel. This is only supported on Windows 8 and beyond. |
945 const char kEnableWin32kRendererLockDown[] | 942 const char kEnableWin32kRendererLockDown[] |
946 = "enable_win32k_renderer_lockdown"; | 943 = "enable_win32k_renderer_lockdown"; |
947 #endif | 944 #endif |
948 | 945 |
949 // Don't dump stuff here, follow the same order as the header. | 946 // Don't dump stuff here, follow the same order as the header. |
950 | 947 |
951 } // namespace switches | 948 } // namespace switches |
OLD | NEW |