OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 // SKIA_GPU flag, which can be enabled by setting use_skia_gpu variable to 1 | 174 // SKIA_GPU flag, which can be enabled by setting use_skia_gpu variable to 1 |
175 // in build/features_override.gypi. | 175 // in build/features_override.gypi. |
176 const char kEnableAcceleratedDrawing[] = "enable-accelerated-drawing"; | 176 const char kEnableAcceleratedDrawing[] = "enable-accelerated-drawing"; |
177 | 177 |
178 // Enables WebKit accessibility within the renderer process. | 178 // Enables WebKit accessibility within the renderer process. |
179 const char kEnableAccessibility[] = "enable-accessibility"; | 179 const char kEnableAccessibility[] = "enable-accessibility"; |
180 | 180 |
181 // Turns on extremely verbose logging of accessibility events. | 181 // Turns on extremely verbose logging of accessibility events. |
182 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; | 182 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; |
183 | 183 |
| 184 // Enables the creation of compositing layers for fixed position elements. |
| 185 const char kEnableCompositingForFixedPosition[] = |
| 186 "enable-fixed-position-compositing"; |
| 187 |
184 // Enable DNS side checking of certificates. Still experimental, should only | 188 // Enable DNS side checking of certificates. Still experimental, should only |
185 // be used by developers at the current time. | 189 // be used by developers at the current time. |
186 const char kEnableDNSCertProvenanceChecking[] = | 190 const char kEnableDNSCertProvenanceChecking[] = |
187 "enable-dns-cert-provenance-checking"; | 191 "enable-dns-cert-provenance-checking"; |
188 | 192 |
189 // Enables device motion events. | 193 // Enables device motion events. |
190 const char kEnableDeviceMotion[] = "enable-device-motion"; | 194 const char kEnableDeviceMotion[] = "enable-device-motion"; |
191 | 195 |
192 // Enable the JavaScript Full Screen API. | 196 // Enable the JavaScript Full Screen API. |
193 const char kDisableFullScreen[] = "disable-fullscreen"; | 197 const char kDisableFullScreen[] = "disable-fullscreen"; |
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
503 // instead of NSS for SSL. | 507 // instead of NSS for SSL. |
504 const char kUseSystemSSL[] = "use-system-ssl"; | 508 const char kUseSystemSSL[] = "use-system-ssl"; |
505 #endif | 509 #endif |
506 | 510 |
507 #if !defined(OFFICIAL_BUILD) | 511 #if !defined(OFFICIAL_BUILD) |
508 // Causes the renderer process to throw an assertion on launch. | 512 // Causes the renderer process to throw an assertion on launch. |
509 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; | 513 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; |
510 #endif | 514 #endif |
511 | 515 |
512 } // namespace switches | 516 } // namespace switches |
OLD | NEW |