| 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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; | 339 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; |
| 340 | 340 |
| 341 // Enables experimental feature that maps multiple RenderLayers to | 341 // Enables experimental feature that maps multiple RenderLayers to |
| 342 // one composited layer to avoid pathological layer counts. | 342 // one composited layer to avoid pathological layer counts. |
| 343 const char kEnableLayerSquashing[] = | 343 const char kEnableLayerSquashing[] = |
| 344 "enable-layer-squashing"; | 344 "enable-layer-squashing"; |
| 345 | 345 |
| 346 // Enable experimental container node culling. | 346 // Enable experimental container node culling. |
| 347 const char kEnableContainerCulling[] = "enable-container-culling"; | 347 const char kEnableContainerCulling[] = "enable-container-culling"; |
| 348 | 348 |
| 349 // Turns on extremely verbose logging of accessibility events. | |
| 350 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; | |
| 351 | |
| 352 // Use a BeginFrame signal from browser to renderer to schedule rendering. | 349 // Use a BeginFrame signal from browser to renderer to schedule rendering. |
| 353 const char kEnableBeginFrameScheduling[] = "enable-begin-frame-scheduling"; | 350 const char kEnableBeginFrameScheduling[] = "enable-begin-frame-scheduling"; |
| 354 | 351 |
| 355 // Enable the creation of compositing layers for fixed position | 352 // Enable the creation of compositing layers for fixed position |
| 356 // elements. Three options are needed to support four possible scenarios: | 353 // elements. Three options are needed to support four possible scenarios: |
| 357 // 1. Default (disabled) | 354 // 1. Default (disabled) |
| 358 // 2. Enabled always (to allow dogfooding) | 355 // 2. Enabled always (to allow dogfooding) |
| 359 // 3. Disabled always (to give safety fallback for users) | 356 // 3. Disabled always (to give safety fallback for users) |
| 360 // 4. Enabled only if we detect a highDPI display | 357 // 4. Enabled only if we detect a highDPI display |
| 361 // | 358 // |
| (...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1002 | 999 |
| 1003 // Disables support for Core Animation plugins. This is triggered when | 1000 // Disables support for Core Animation plugins. This is triggered when |
| 1004 // accelerated compositing is disabled. See http://crbug.com/122430 . | 1001 // accelerated compositing is disabled. See http://crbug.com/122430 . |
| 1005 const char kDisableCoreAnimationPlugins[] = | 1002 const char kDisableCoreAnimationPlugins[] = |
| 1006 "disable-core-animation-plugins"; | 1003 "disable-core-animation-plugins"; |
| 1007 #endif | 1004 #endif |
| 1008 | 1005 |
| 1009 // Don't dump stuff here, follow the same order as the header. | 1006 // Don't dump stuff here, follow the same order as the header. |
| 1010 | 1007 |
| 1011 } // namespace switches | 1008 } // namespace switches |
| OLD | NEW |