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