| 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 899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 910 const char kUtilityProcessRunningElevated[] = "utility-run-elevated"; | 910 const char kUtilityProcessRunningElevated[] = "utility-run-elevated"; |
| 911 | 911 |
| 912 // In debug builds, asserts that the stream of input events is valid. | 912 // In debug builds, asserts that the stream of input events is valid. |
| 913 const char kValidateInputEventStream[] = "validate-input-event-stream"; | 913 const char kValidateInputEventStream[] = "validate-input-event-stream"; |
| 914 | 914 |
| 915 // Will add kWaitForDebugger to every child processes. If a value is passed, it | 915 // Will add kWaitForDebugger to every child processes. If a value is passed, it |
| 916 // will be used as a filter to determine if the child process should have the | 916 // will be used as a filter to determine if the child process should have the |
| 917 // kWaitForDebugger flag passed on or not. | 917 // kWaitForDebugger flag passed on or not. |
| 918 const char kWaitForDebuggerChildren[] = "wait-for-debugger-children"; | 918 const char kWaitForDebuggerChildren[] = "wait-for-debugger-children"; |
| 919 | 919 |
| 920 // Overrides the amount of shared memory the webgl command buffer allocates | |
| 921 const char kWebGLCommandBufferSizeKb[] = "webgl-command-buffer-size-kb"; | |
| 922 | |
| 923 // Causes the process to run as a worker subprocess. | 920 // Causes the process to run as a worker subprocess. |
| 924 const char kWorkerProcess[] = "worker"; | 921 const char kWorkerProcess[] = "worker"; |
| 925 | 922 |
| 926 // The prefix used when starting the zygote process. (i.e. 'gdb --args') | 923 // The prefix used when starting the zygote process. (i.e. 'gdb --args') |
| 927 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; | 924 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; |
| 928 | 925 |
| 929 // Causes the process to run as a renderer zygote. | 926 // Causes the process to run as a renderer zygote. |
| 930 const char kZygoteProcess[] = "zygote"; | 927 const char kZygoteProcess[] = "zygote"; |
| 931 | 928 |
| 932 #if defined(ENABLE_WEBRTC) | 929 #if defined(ENABLE_WEBRTC) |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1002 | 999 |
| 1003 // Disables support for Core Animation plugins. This is triggered when | 1000 // Disables support for Core Animation plugins. This is triggered when |
| 1004 // accelerated compositing is disabled. See http://crbug.com/122430 . | 1001 // accelerated compositing is disabled. See http://crbug.com/122430 . |
| 1005 const char kDisableCoreAnimationPlugins[] = | 1002 const char kDisableCoreAnimationPlugins[] = |
| 1006 "disable-core-animation-plugins"; | 1003 "disable-core-animation-plugins"; |
| 1007 #endif | 1004 #endif |
| 1008 | 1005 |
| 1009 // Don't dump stuff here, follow the same order as the header. | 1006 // Don't dump stuff here, follow the same order as the header. |
| 1010 | 1007 |
| 1011 } // namespace switches | 1008 } // namespace switches |
| OLD | NEW |