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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 // Enables WebKit accessibility within the renderer process. | 189 // Enables WebKit accessibility within the renderer process. |
190 const char kEnableAccessibility[] = "enable-accessibility"; | 190 const char kEnableAccessibility[] = "enable-accessibility"; |
191 | 191 |
192 // Turns on extremely verbose logging of accessibility events. | 192 // Turns on extremely verbose logging of accessibility events. |
193 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; | 193 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; |
194 | 194 |
195 // Enables the creation of compositing layers for fixed position elements. | 195 // Enables the creation of compositing layers for fixed position elements. |
196 const char kEnableCompositingForFixedPosition[] = | 196 const char kEnableCompositingForFixedPosition[] = |
197 "enable-fixed-position-compositing"; | 197 "enable-fixed-position-compositing"; |
198 | 198 |
| 199 // Enable deferred 2d canvas rendering. |
| 200 const char kEnableDeferred2dCanvas[] = "enable-deferred-2d-canvas"; |
| 201 |
199 // Enable DNS side checking of certificates. Still experimental, should only | 202 // Enable DNS side checking of certificates. Still experimental, should only |
200 // be used by developers at the current time. | 203 // be used by developers at the current time. |
201 const char kEnableDNSCertProvenanceChecking[] = | 204 const char kEnableDNSCertProvenanceChecking[] = |
202 "enable-dns-cert-provenance-checking"; | 205 "enable-dns-cert-provenance-checking"; |
203 | 206 |
204 // Enables device motion events. | 207 // Enables device motion events. |
205 const char kEnableDeviceMotion[] = "enable-device-motion"; | 208 const char kEnableDeviceMotion[] = "enable-device-motion"; |
206 | 209 |
207 // Enable the JavaScript Full Screen API. | 210 // Enable the JavaScript Full Screen API. |
208 const char kDisableFullScreen[] = "disable-fullscreen"; | 211 const char kDisableFullScreen[] = "disable-fullscreen"; |
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
568 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; | 571 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; |
569 #endif | 572 #endif |
570 | 573 |
571 // Enable per-tile page painting. | 574 // Enable per-tile page painting. |
572 const char kEnablePerTilePainting[] = "enable-per-tile-painting"; | 575 const char kEnablePerTilePainting[] = "enable-per-tile-painting"; |
573 | 576 |
574 // Disables the use of a 3D software rasterizer. | 577 // Disables the use of a 3D software rasterizer. |
575 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; | 578 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; |
576 | 579 |
577 } // namespace switches | 580 } // namespace switches |
OLD | NEW |