| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 // This does NOT enable color management for images. The source is still | 207 // This does NOT enable color management for images. The source is still |
| 208 // assumed to be sRGB. | 208 // assumed to be sRGB. |
| 209 const char kEnableMonitorProfile[] = "enable-monitor-profile"; | 209 const char kEnableMonitorProfile[] = "enable-monitor-profile"; |
| 210 | 210 |
| 211 // Enables TLS origin bound certificate extension. | 211 // Enables TLS origin bound certificate extension. |
| 212 const char kEnableOriginBoundCerts[] = "enable-origin-bound-certs"; | 212 const char kEnableOriginBoundCerts[] = "enable-origin-bound-certs"; |
| 213 | 213 |
| 214 // Enable caching of pre-parsed JS script data. See http://crbug.com/32407. | 214 // Enable caching of pre-parsed JS script data. See http://crbug.com/32407. |
| 215 const char kEnablePreparsedJsCaching[] = "enable-preparsed-js-caching"; | 215 const char kEnablePreparsedJsCaching[] = "enable-preparsed-js-caching"; |
| 216 | 216 |
| 217 // Enable privileged WebGL extensions; without this switch such extensions are |
| 218 // available only to Chrome extensions. |
| 219 const char kEnablePrivilegedWebGLExtensions[] = |
| 220 "enable-privileged-webgl-extensions"; |
| 221 |
| 217 // Enables TLS cached info extension. | 222 // Enables TLS cached info extension. |
| 218 const char kEnableSSLCachedInfo[] = "enable-ssl-cached-info"; | 223 const char kEnableSSLCachedInfo[] = "enable-ssl-cached-info"; |
| 219 | 224 |
| 220 // Cause the OS X sandbox write to syslog every time an access to a resource | 225 // Cause the OS X sandbox write to syslog every time an access to a resource |
| 221 // is denied by the sandbox. | 226 // is denied by the sandbox. |
| 222 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; | 227 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; |
| 223 | 228 |
| 224 // Enable the seccomp sandbox (Linux only) | 229 // Enable the seccomp sandbox (Linux only) |
| 225 const char kEnableSeccompSandbox[] = "enable-seccomp-sandbox"; | 230 const char kEnableSeccompSandbox[] = "enable-seccomp-sandbox"; |
| 226 | 231 |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 // instead of NSS for SSL. | 499 // instead of NSS for SSL. |
| 495 const char kUseSystemSSL[] = "use-system-ssl"; | 500 const char kUseSystemSSL[] = "use-system-ssl"; |
| 496 #endif | 501 #endif |
| 497 | 502 |
| 498 #if !defined(OFFICIAL_BUILD) | 503 #if !defined(OFFICIAL_BUILD) |
| 499 // Causes the renderer process to throw an assertion on launch. | 504 // Causes the renderer process to throw an assertion on launch. |
| 500 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; | 505 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; |
| 501 #endif | 506 #endif |
| 502 | 507 |
| 503 } // namespace switches | 508 } // namespace switches |
| OLD | NEW |