| 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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 const char kEnableLCDText[] = "enable-lcd-text"; | 360 const char kEnableLCDText[] = "enable-lcd-text"; |
| 361 | 361 |
| 362 // Enables experimental feature that maps multiple RenderLayers to | 362 // Enables experimental feature that maps multiple RenderLayers to |
| 363 // one composited layer to avoid pathological layer counts. | 363 // one composited layer to avoid pathological layer counts. |
| 364 const char kEnableLayerSquashing[] = | 364 const char kEnableLayerSquashing[] = |
| 365 "enable-layer-squashing"; | 365 "enable-layer-squashing"; |
| 366 | 366 |
| 367 // Turns on extremely verbose logging of accessibility events. | 367 // Turns on extremely verbose logging of accessibility events. |
| 368 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; | 368 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; |
| 369 | 369 |
| 370 // Use a BeginImplFrame signal from browser to renderer to schedule rendering. | 370 // Use a BeginFrame signal from browser to renderer to schedule rendering. |
| 371 const char kEnableBeginFrameScheduling[] = "enable-begin-frame-scheduling"; | 371 const char kEnableBeginFrameScheduling[] = "enable-begin-frame-scheduling"; |
| 372 | 372 |
| 373 // Enables browser plugin for all types of pages. | 373 // Enables browser plugin for all types of pages. |
| 374 const char kEnableBrowserPluginForAllViewTypes[] = | 374 const char kEnableBrowserPluginForAllViewTypes[] = |
| 375 "enable-browser-plugin-for-all-view-types"; | 375 "enable-browser-plugin-for-all-view-types"; |
| 376 | 376 |
| 377 // Enable the creation of compositing layers for fixed position | 377 // Enable the creation of compositing layers for fixed position |
| 378 // elements. Three options are needed to support four possible scenarios: | 378 // elements. Three options are needed to support four possible scenarios: |
| 379 // 1. Default (disabled) | 379 // 1. Default (disabled) |
| 380 // 2. Enabled always (to allow dogfooding) | 380 // 2. Enabled always (to allow dogfooding) |
| (...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1030 | 1030 |
| 1031 // Disables support for Core Animation plugins. This is triggered when | 1031 // Disables support for Core Animation plugins. This is triggered when |
| 1032 // accelerated compositing is disabled. See http://crbug.com/122430 . | 1032 // accelerated compositing is disabled. See http://crbug.com/122430 . |
| 1033 const char kDisableCoreAnimationPlugins[] = | 1033 const char kDisableCoreAnimationPlugins[] = |
| 1034 "disable-core-animation-plugins"; | 1034 "disable-core-animation-plugins"; |
| 1035 #endif | 1035 #endif |
| 1036 | 1036 |
| 1037 // Don't dump stuff here, follow the same order as the header. | 1037 // Don't dump stuff here, follow the same order as the header. |
| 1038 | 1038 |
| 1039 } // namespace switches | 1039 } // namespace switches |
| OLD | NEW |