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