| 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; | 307 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; |
| 308 | 308 |
| 309 // Enables experimental feature that maps multiple RenderLayers to | 309 // Enables experimental feature that maps multiple RenderLayers to |
| 310 // one composited layer to avoid pathological layer counts. | 310 // one composited layer to avoid pathological layer counts. |
| 311 const char kEnableLayerSquashing[] = | 311 const char kEnableLayerSquashing[] = |
| 312 "enable-layer-squashing"; | 312 "enable-layer-squashing"; |
| 313 | 313 |
| 314 // Enable the experimental Credential Manager JavaScript API. | 314 // Enable the experimental Credential Manager JavaScript API. |
| 315 const char kEnableCredentialManagerAPI[] = "enable-credential-manager-api"; | 315 const char kEnableCredentialManagerAPI[] = "enable-credential-manager-api"; |
| 316 | 316 |
| 317 // Use a BeginFrame signal from browser to renderer to schedule rendering. | |
| 318 const char kEnableBeginFrameScheduling[] = "enable-begin-frame-scheduling"; | |
| 319 | |
| 320 // Enable the creation of compositing layers when it would prevent LCD text. | 317 // Enable the creation of compositing layers when it would prevent LCD text. |
| 321 const char kEnablePreferCompositingToLCDText[] = | 318 const char kEnablePreferCompositingToLCDText[] = |
| 322 "enable-prefer-compositing-to-lcd-text"; | 319 "enable-prefer-compositing-to-lcd-text"; |
| 323 | 320 |
| 324 // PlzNavigate: Use the experimental browser-side navigation path. | 321 // PlzNavigate: Use the experimental browser-side navigation path. |
| 325 const char kEnableBrowserSideNavigation[] = "enable-browser-side-navigation"; | 322 const char kEnableBrowserSideNavigation[] = "enable-browser-side-navigation"; |
| 326 | 323 |
| 327 // Enable/Disable the creation of compositing layers for RenderLayers with a | 324 // Enable/Disable the creation of compositing layers for RenderLayers with a |
| 328 // transition on a property that supports accelerated animation (that is, | 325 // transition on a property that supports accelerated animation (that is, |
| 329 // opacity, -webkit-transform, and -webkit-filter), even when no animation is | 326 // opacity, -webkit-transform, and -webkit-filter), even when no animation is |
| (...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 994 #endif | 991 #endif |
| 995 | 992 |
| 996 #if defined(ENABLE_PLUGINS) | 993 #if defined(ENABLE_PLUGINS) |
| 997 // Enables the plugin power saver feature. | 994 // Enables the plugin power saver feature. |
| 998 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; | 995 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; |
| 999 #endif | 996 #endif |
| 1000 | 997 |
| 1001 // Don't dump stuff here, follow the same order as the header. | 998 // Don't dump stuff here, follow the same order as the header. |
| 1002 | 999 |
| 1003 } // namespace switches | 1000 } // namespace switches |
| OLD | NEW |