| 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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; | 294 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; |
| 295 | 295 |
| 296 // Enables experimental feature that maps multiple RenderLayers to | 296 // Enables experimental feature that maps multiple RenderLayers to |
| 297 // one composited layer to avoid pathological layer counts. | 297 // one composited layer to avoid pathological layer counts. |
| 298 const char kEnableLayerSquashing[] = | 298 const char kEnableLayerSquashing[] = |
| 299 "enable-layer-squashing"; | 299 "enable-layer-squashing"; |
| 300 | 300 |
| 301 // Enable experimental container node culling. | 301 // Enable experimental container node culling. |
| 302 const char kEnableContainerCulling[] = "enable-container-culling"; | 302 const char kEnableContainerCulling[] = "enable-container-culling"; |
| 303 | 303 |
| 304 // Enable the experimental Credential Manager JavaScript API. |
| 305 const char kEnableCredentialManagerAPI[] = "enable-credential-manager-api"; |
| 306 |
| 304 // Use a BeginFrame signal from browser to renderer to schedule rendering. | 307 // Use a BeginFrame signal from browser to renderer to schedule rendering. |
| 305 const char kEnableBeginFrameScheduling[] = "enable-begin-frame-scheduling"; | 308 const char kEnableBeginFrameScheduling[] = "enable-begin-frame-scheduling"; |
| 306 | 309 |
| 307 // Enable the creation of compositing layers when it would prevent LCD text. | 310 // Enable the creation of compositing layers when it would prevent LCD text. |
| 308 const char kEnablePreferCompositingToLCDText[] = | 311 const char kEnablePreferCompositingToLCDText[] = |
| 309 "enable-prefer-compositing-to-lcd-text"; | 312 "enable-prefer-compositing-to-lcd-text"; |
| 310 | 313 |
| 311 // PlzNavigate: Use the experimental browser-side navigation path. | 314 // PlzNavigate: Use the experimental browser-side navigation path. |
| 312 const char kEnableBrowserSideNavigation[] = "enable-browser-side-navigation"; | 315 const char kEnableBrowserSideNavigation[] = "enable-browser-side-navigation"; |
| 313 | 316 |
| (...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 945 // Enable the Win32K process mitigation policy for renderer processes which | 948 // Enable the Win32K process mitigation policy for renderer processes which |
| 946 // prevents them from invoking user32 and gdi32 system calls which enter | 949 // prevents them from invoking user32 and gdi32 system calls which enter |
| 947 // the kernel. This is only supported on Windows 8 and beyond. | 950 // the kernel. This is only supported on Windows 8 and beyond. |
| 948 const char kEnableWin32kRendererLockDown[] | 951 const char kEnableWin32kRendererLockDown[] |
| 949 = "enable_win32k_renderer_lockdown"; | 952 = "enable_win32k_renderer_lockdown"; |
| 950 #endif | 953 #endif |
| 951 | 954 |
| 952 // Don't dump stuff here, follow the same order as the header. | 955 // Don't dump stuff here, follow the same order as the header. |
| 953 | 956 |
| 954 } // namespace switches | 957 } // namespace switches |
| OLD | NEW |