| 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; | 286 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; |
| 287 | 287 |
| 288 // Enables experimental feature that maps multiple RenderLayers to | 288 // Enables experimental feature that maps multiple RenderLayers to |
| 289 // one composited layer to avoid pathological layer counts. | 289 // one composited layer to avoid pathological layer counts. |
| 290 const char kEnableLayerSquashing[] = | 290 const char kEnableLayerSquashing[] = |
| 291 "enable-layer-squashing"; | 291 "enable-layer-squashing"; |
| 292 | 292 |
| 293 // Enable experimental container node culling. | 293 // Enable experimental container node culling. |
| 294 const char kEnableContainerCulling[] = "enable-container-culling"; | 294 const char kEnableContainerCulling[] = "enable-container-culling"; |
| 295 | 295 |
| 296 // Use a BeginFrame signal from browser to renderer to schedule rendering. | |
| 297 const char kEnableBeginFrameScheduling[] = "enable-begin-frame-scheduling"; | |
| 298 | |
| 299 // Enable the creation of compositing layers when it would prevent LCD text. | 296 // Enable the creation of compositing layers when it would prevent LCD text. |
| 300 const char kEnablePreferCompositingToLCDText[] = | 297 const char kEnablePreferCompositingToLCDText[] = |
| 301 "enable-prefer-compositing-to-lcd-text"; | 298 "enable-prefer-compositing-to-lcd-text"; |
| 302 | 299 |
| 303 // PlzNavigate: Use the experimental browser-side navigation path. | 300 // PlzNavigate: Use the experimental browser-side navigation path. |
| 304 const char kEnableBrowserSideNavigation[] = "enable-browser-side-navigation"; | 301 const char kEnableBrowserSideNavigation[] = "enable-browser-side-navigation"; |
| 305 | 302 |
| 306 // Enable/Disable the creation of compositing layers for RenderLayers with a | 303 // Enable/Disable the creation of compositing layers for RenderLayers with a |
| 307 // transition on a property that supports accelerated animation (that is, | 304 // transition on a property that supports accelerated animation (that is, |
| 308 // opacity, -webkit-transform, and -webkit-filter), even when no animation is | 305 // opacity, -webkit-transform, and -webkit-filter), even when no animation is |
| (...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 938 // Enable the Win32K process mitigation policy for renderer processes which | 935 // Enable the Win32K process mitigation policy for renderer processes which |
| 939 // prevents them from invoking user32 and gdi32 system calls which enter | 936 // prevents them from invoking user32 and gdi32 system calls which enter |
| 940 // the kernel. This is only supported on Windows 8 and beyond. | 937 // the kernel. This is only supported on Windows 8 and beyond. |
| 941 const char kEnableWin32kRendererLockDown[] | 938 const char kEnableWin32kRendererLockDown[] |
| 942 = "enable_win32k_renderer_lockdown"; | 939 = "enable_win32k_renderer_lockdown"; |
| 943 #endif | 940 #endif |
| 944 | 941 |
| 945 // Don't dump stuff here, follow the same order as the header. | 942 // Don't dump stuff here, follow the same order as the header. |
| 946 | 943 |
| 947 } // namespace switches | 944 } // namespace switches |
| OLD | NEW |