| 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 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 const char kV8CacheOptions[] = "v8-cache-options"; | 392 const char kV8CacheOptions[] = "v8-cache-options"; |
| 393 | 393 |
| 394 // Enables the CSS multicol implementation that uses the regions implementation. | 394 // Enables the CSS multicol implementation that uses the regions implementation. |
| 395 const char kEnableRegionBasedColumns[] = | 395 const char kEnableRegionBasedColumns[] = |
| 396 "enable-region-based-columns"; | 396 "enable-region-based-columns"; |
| 397 | 397 |
| 398 // Replaces renderer-browser IPC channel with ChnanelMojo. | 398 // Replaces renderer-browser IPC channel with ChnanelMojo. |
| 399 const char kEnableRendererMojoChannel[] = | 399 const char kEnableRendererMojoChannel[] = |
| 400 "enable-renderer-mojo-channel"; | 400 "enable-renderer-mojo-channel"; |
| 401 | 401 |
| 402 // Enables targeted style recalculation optimizations. | |
| 403 const char kEnableTargetedStyleRecalc[] = | |
| 404 "enable-targeted-style-recalc"; | |
| 405 | |
| 406 // Cause the OS X sandbox write to syslog every time an access to a resource | 402 // Cause the OS X sandbox write to syslog every time an access to a resource |
| 407 // is denied by the sandbox. | 403 // is denied by the sandbox. |
| 408 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; | 404 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; |
| 409 | 405 |
| 410 // Enables seccomp-bpf support for Android. Requires experimental kernel | 406 // Enables seccomp-bpf support for Android. Requires experimental kernel |
| 411 // support. <http://crbug.com/166704> | 407 // support. <http://crbug.com/166704> |
| 412 const char kEnableSeccompFilterSandbox[] = | 408 const char kEnableSeccompFilterSandbox[] = |
| 413 "enable-seccomp-filter-sandbox"; | 409 "enable-seccomp-filter-sandbox"; |
| 414 | 410 |
| 415 // Enables the Skia benchmarking extension | 411 // Enables the Skia benchmarking extension |
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 938 // Enable the Win32K process mitigation policy for renderer processes which | 934 // Enable the Win32K process mitigation policy for renderer processes which |
| 939 // prevents them from invoking user32 and gdi32 system calls which enter | 935 // prevents them from invoking user32 and gdi32 system calls which enter |
| 940 // the kernel. This is only supported on Windows 8 and beyond. | 936 // the kernel. This is only supported on Windows 8 and beyond. |
| 941 const char kEnableWin32kRendererLockDown[] | 937 const char kEnableWin32kRendererLockDown[] |
| 942 = "enable_win32k_renderer_lockdown"; | 938 = "enable_win32k_renderer_lockdown"; |
| 943 #endif | 939 #endif |
| 944 | 940 |
| 945 // Don't dump stuff here, follow the same order as the header. | 941 // Don't dump stuff here, follow the same order as the header. |
| 946 | 942 |
| 947 } // namespace switches | 943 } // namespace switches |
| OLD | NEW |