| 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 namespace switches { | 7 namespace switches { |
| 8 | 8 |
| 9 // By default, file:// URIs cannot read other file:// URIs. This is an | 9 // By default, file:// URIs cannot read other file:// URIs. This is an |
| 10 // override for developers who need the old behavior for testing. | 10 // override for developers who need the old behavior for testing. |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 | 216 |
| 217 // Enable gpu-accelerated SVG/W3C filters. | 217 // Enable gpu-accelerated SVG/W3C filters. |
| 218 const char kEnableAcceleratedFilters[] = "enable-accelerated-filters"; | 218 const char kEnableAcceleratedFilters[] = "enable-accelerated-filters"; |
| 219 | 219 |
| 220 // Enables WebKit accessibility within the renderer process. | 220 // Enables WebKit accessibility within the renderer process. |
| 221 const char kEnableAccessibility[] = "enable-accessibility"; | 221 const char kEnableAccessibility[] = "enable-accessibility"; |
| 222 | 222 |
| 223 // Turns on extremely verbose logging of accessibility events. | 223 // Turns on extremely verbose logging of accessibility events. |
| 224 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; | 224 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; |
| 225 | 225 |
| 226 // Turns on the browser plugin. |
| 227 const char kEnableBrowserPlugin[] = "enable-browser-plugin"; |
| 228 |
| 226 // Enables the creation of compositing layers for fixed position elements. | 229 // Enables the creation of compositing layers for fixed position elements. |
| 227 const char kEnableCompositingForFixedPosition[] = | 230 const char kEnableCompositingForFixedPosition[] = |
| 228 "enable-fixed-position-compositing"; | 231 "enable-fixed-position-compositing"; |
| 229 | 232 |
| 230 // Enable deferred 2d canvas rendering. | 233 // Enable deferred 2d canvas rendering. |
| 231 const char kEnableDeferred2dCanvas[] = "enable-deferred-2d-canvas"; | 234 const char kEnableDeferred2dCanvas[] = "enable-deferred-2d-canvas"; |
| 232 | 235 |
| 233 // Enables compositing to texture instead of display. | 236 // Enables compositing to texture instead of display. |
| 234 const char kEnableCompositeToTexture[] = "enable-composite-to-texture"; | 237 const char kEnableCompositeToTexture[] = "enable-composite-to-texture"; |
| 235 | 238 |
| (...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 637 | 640 |
| 638 // Disables the use of a 3D software rasterizer. | 641 // Disables the use of a 3D software rasterizer. |
| 639 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; | 642 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; |
| 640 | 643 |
| 641 #if defined(USE_AURA) | 644 #if defined(USE_AURA) |
| 642 // Forces usage of the test compositor. Needed to run ui tests on bots. | 645 // Forces usage of the test compositor. Needed to run ui tests on bots. |
| 643 extern const char kTestCompositor[] = "test-compositor"; | 646 extern const char kTestCompositor[] = "test-compositor"; |
| 644 #endif | 647 #endif |
| 645 | 648 |
| 646 } // namespace switches | 649 } // namespace switches |
| OLD | NEW |