| 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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 // also applys to workers. | 421 // also applys to workers. |
| 422 const char kEnablePreciseMemoryInfo[] = "enable-precise-memory-info"; | 422 const char kEnablePreciseMemoryInfo[] = "enable-precise-memory-info"; |
| 423 | 423 |
| 424 // Enable caching of pre-parsed JS script data. See http://crbug.com/32407. | 424 // Enable caching of pre-parsed JS script data. See http://crbug.com/32407. |
| 425 const char kEnablePreparsedJsCaching[] = "enable-preparsed-js-caching"; | 425 const char kEnablePreparsedJsCaching[] = "enable-preparsed-js-caching"; |
| 426 | 426 |
| 427 // Enables the CSS multicol implementation that uses the regions implementation. | 427 // Enables the CSS multicol implementation that uses the regions implementation. |
| 428 const char kEnableRegionBasedColumns[] = | 428 const char kEnableRegionBasedColumns[] = |
| 429 "enable-region-based-columns"; | 429 "enable-region-based-columns"; |
| 430 | 430 |
| 431 // Replaces renderer-browser IPC channel with ChnanelMojo. |
| 432 const char kEnableRendererMojoChannel[] = |
| 433 "enable-renderer-mojo-channel"; |
| 434 |
| 431 // Enables targeted style recalculation optimizations. | 435 // Enables targeted style recalculation optimizations. |
| 432 const char kEnableTargetedStyleRecalc[] = | 436 const char kEnableTargetedStyleRecalc[] = |
| 433 "enable-targeted-style-recalc"; | 437 "enable-targeted-style-recalc"; |
| 434 | 438 |
| 435 // Cause the OS X sandbox write to syslog every time an access to a resource | 439 // Cause the OS X sandbox write to syslog every time an access to a resource |
| 436 // is denied by the sandbox. | 440 // is denied by the sandbox. |
| 437 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; | 441 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; |
| 438 | 442 |
| 439 // Enables seccomp-bpf support for Android. Requires experimental kernel | 443 // Enables seccomp-bpf support for Android. Requires experimental kernel |
| 440 // support. <http://crbug.com/166704> | 444 // support. <http://crbug.com/166704> |
| (...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 944 // Enable the Win32K process mitigation policy for renderer processes which | 948 // Enable the Win32K process mitigation policy for renderer processes which |
| 945 // prevents them from invoking user32 and gdi32 system calls which enter | 949 // prevents them from invoking user32 and gdi32 system calls which enter |
| 946 // the kernel. This is only supported on Windows 8 and beyond. | 950 // the kernel. This is only supported on Windows 8 and beyond. |
| 947 const char kEnableWin32kRendererLockDown[] | 951 const char kEnableWin32kRendererLockDown[] |
| 948 = "enable_win32k_renderer_lockdown"; | 952 = "enable_win32k_renderer_lockdown"; |
| 949 #endif | 953 #endif |
| 950 | 954 |
| 951 // Don't dump stuff here, follow the same order as the header. | 955 // Don't dump stuff here, follow the same order as the header. |
| 952 | 956 |
| 953 } // namespace switches | 957 } // namespace switches |
| OLD | NEW |