| 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/common/content_switches.h" | 5 #include "content/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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 // SKIA_GPU flag, which can be enabled by setting use_skia_gpu variable to 1 | 167 // SKIA_GPU flag, which can be enabled by setting use_skia_gpu variable to 1 |
| 168 // in build/features_override.gypi. | 168 // in build/features_override.gypi. |
| 169 const char kEnableAcceleratedDrawing[] = "enable-accelerated-drawing"; | 169 const char kEnableAcceleratedDrawing[] = "enable-accelerated-drawing"; |
| 170 | 170 |
| 171 // Enables WebKit accessibility within the renderer process. | 171 // Enables WebKit accessibility within the renderer process. |
| 172 const char kEnableAccessibility[] = "enable-accessibility"; | 172 const char kEnableAccessibility[] = "enable-accessibility"; |
| 173 | 173 |
| 174 // Turns on extremely verbose logging of accessibility events. | 174 // Turns on extremely verbose logging of accessibility events. |
| 175 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; | 175 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; |
| 176 | 176 |
| 177 // Enables the benchmarking extensions. | |
| 178 const char kEnableBenchmarking[] = "enable-benchmarking"; | |
| 179 | |
| 180 // Enable DNS side checking of certificates. Still experimental, should only | 177 // Enable DNS side checking of certificates. Still experimental, should only |
| 181 // be used by developers at the current time. | 178 // be used by developers at the current time. |
| 182 const char kEnableDNSCertProvenanceChecking[] = | 179 const char kEnableDNSCertProvenanceChecking[] = |
| 183 "enable-dns-cert-provenance-checking"; | 180 "enable-dns-cert-provenance-checking"; |
| 184 | 181 |
| 185 // Enables device motion events. | 182 // Enables device motion events. |
| 186 const char kEnableDeviceMotion[] = "enable-device-motion"; | 183 const char kEnableDeviceMotion[] = "enable-device-motion"; |
| 187 | 184 |
| 188 // Enable the JavaScript Full Screen API. | 185 // Enable the JavaScript Full Screen API. |
| 189 const char kDisableFullScreen[] = "disable-fullscreen"; | 186 const char kDisableFullScreen[] = "disable-fullscreen"; |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 508 // instead of NSS for SSL. | 505 // instead of NSS for SSL. |
| 509 const char kUseSystemSSL[] = "use-system-ssl"; | 506 const char kUseSystemSSL[] = "use-system-ssl"; |
| 510 #endif | 507 #endif |
| 511 | 508 |
| 512 #if !defined(OFFICIAL_BUILD) | 509 #if !defined(OFFICIAL_BUILD) |
| 513 // Causes the renderer process to throw an assertion on launch. | 510 // Causes the renderer process to throw an assertion on launch. |
| 514 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; | 511 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; |
| 515 #endif | 512 #endif |
| 516 | 513 |
| 517 } // namespace switches | 514 } // namespace switches |
| OLD | NEW |