Chromium Code Reviews| Index: content/common/content_switches.cc |
| =================================================================== |
| --- content/common/content_switches.cc (revision 99756) |
| +++ content/common/content_switches.cc (working copy) |
| @@ -17,6 +17,12 @@ |
| // Allows debugging of sandboxed processes (see zygote_main_linux.cc). |
| const char kAllowSandboxDebugging[] = "allow-sandbox-debugging"; |
| +// Causes the browser process to throw an assertion on startup. |
| +const char kBrowserAssertTest[] = "assert-test"; |
| + |
| +// Causes the browser process to crash on startup. |
| +const char kBrowserCrashTest[] = "crash-test"; |
| + |
| // Path to the exe to run for the renderer and plugin subprocesses. |
| const char kBrowserSubprocessPath[] = "browser-subprocess-path"; |
| @@ -117,9 +123,6 @@ |
| // builds. |
| const char kDisableLogging[] = "disable-logging"; |
| -// Disable smooth scrolling for testing. |
| -const char kDisableSmoothScrolling[] = "disable-smooth-scrolling"; |
| - |
| // Prevent plugins from running. |
| const char kDisablePlugins[] = "disable-plugins"; |
| @@ -129,6 +132,12 @@ |
| // Turns off the accessibility in the renderer. |
| const char kDisableRendererAccessibility[] = "disable-renderer-accessibility"; |
| +// Disable False Start in SSL and TLS connections. |
| +const char kDisableSSLFalseStart[] = "disable-ssl-false-start"; |
| + |
| +// Disable smooth scrolling for testing. |
| +const char kDisableSmoothScrolling[] = "disable-smooth-scrolling"; |
| + |
| // Disable the seccomp sandbox (Linux only) |
| const char kDisableSeccompSandbox[] = "disable-seccomp-sandbox"; |
| @@ -168,6 +177,11 @@ |
| // Enables the benchmarking extensions. |
| const char kEnableBenchmarking[] = "enable-benchmarking"; |
| +// Enable DNS side checking of certificates. Still experimental, should only |
| +// be used by developers at the current time. |
| +const char kEnableDNSCertProvenanceChecking[] = |
| + "enable-dns-cert-provenance-checking"; |
| + |
| // Enables device motion events. |
| const char kEnableDeviceMotion[] = "enable-device-motion"; |
| @@ -190,6 +204,9 @@ |
| // assumed to be sRGB. |
| const char kEnableMonitorProfile[] = "enable-monitor-profile"; |
| +// Enables TLS origin bound certificate extension. |
| +const char kEnableOriginBoundCerts[] = "enable-origin-bound-certs"; |
| + |
| // Enable caching of pre-parsed JS script data. See http://crbug.com/32407. |
| const char kEnablePreparsedJsCaching[] = "enable-preparsed-js-caching"; |
| @@ -197,12 +214,19 @@ |
| // is denied by the sandbox. |
| const char kEnableSandboxLogging[] = "enable-sandbox-logging"; |
| +// Enables TLS cached info extension. |
|
viettrungluu
2011/09/06 21:31:42
alphabetical order (well, match the order in the h
jam
2011/09/06 21:50:41
Done.
|
| +const char kEnableSSLCachedInfo[] = "enable-ssl-cached-info"; |
| + |
| // Enable the seccomp sandbox (Linux only) |
| const char kEnableSeccompSandbox[] = "enable-seccomp-sandbox"; |
| // Enables StatsTable, logging statistics to a global named shared memory table. |
| const char kEnableStatsTable[] = "enable-stats-table"; |
| +// Enable use of experimental TCP sockets API for sending data in the |
| +// SYN packet. |
| +const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; |
| + |
| // Enables support for fullscreen video. Current implementation is |
| // incomplete and this flag is used for development and testing. |
| const char kEnableVideoFullscreen[] = "enable-video-fullscreen"; |