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 "build/build_config.h" | 5 #include "build/build_config.h" |
6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
7 | 7 |
8 namespace switches { | 8 namespace switches { |
9 | 9 |
10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
(...skipping 854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
865 const char kUtilityProcessRunningElevated[] = "utility-run-elevated"; | 865 const char kUtilityProcessRunningElevated[] = "utility-run-elevated"; |
866 | 866 |
867 // In debug builds, asserts that the stream of input events is valid. | 867 // In debug builds, asserts that the stream of input events is valid. |
868 const char kValidateInputEventStream[] = "validate-input-event-stream"; | 868 const char kValidateInputEventStream[] = "validate-input-event-stream"; |
869 | 869 |
870 // Will add kWaitForDebugger to every child processes. If a value is passed, it | 870 // Will add kWaitForDebugger to every child processes. If a value is passed, it |
871 // will be used as a filter to determine if the child process should have the | 871 // will be used as a filter to determine if the child process should have the |
872 // kWaitForDebugger flag passed on or not. | 872 // kWaitForDebugger flag passed on or not. |
873 const char kWaitForDebuggerChildren[] = "wait-for-debugger-children"; | 873 const char kWaitForDebuggerChildren[] = "wait-for-debugger-children"; |
874 | 874 |
| 875 // Forces processes to wait for Mojo shell connection initialization before |
| 876 // proceeding with main thread startup. |
| 877 // |
| 878 // TODO(rockot): Remove this. http://crbug.com/594852. |
| 879 const char kWaitForMojoShell[] = "wait-for-mojo-shell"; |
| 880 |
875 // The prefix used when starting the zygote process. (i.e. 'gdb --args') | 881 // The prefix used when starting the zygote process. (i.e. 'gdb --args') |
876 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; | 882 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; |
877 | 883 |
878 // Causes the process to run as a renderer zygote. | 884 // Causes the process to run as a renderer zygote. |
879 const char kZygoteProcess[] = "zygote"; | 885 const char kZygoteProcess[] = "zygote"; |
880 | 886 |
881 #if defined(ENABLE_WEBRTC) | 887 #if defined(ENABLE_WEBRTC) |
882 // Disables HW decode acceleration for WebRTC. | 888 // Disables HW decode acceleration for WebRTC. |
883 const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; | 889 const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; |
884 | 890 |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1041 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1047 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
1042 | 1048 |
1043 // Enables the exporting of the tracing events to ETW. This is only supported on | 1049 // Enables the exporting of the tracing events to ETW. This is only supported on |
1044 // Windows Vista and later. | 1050 // Windows Vista and later. |
1045 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1051 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
1046 #endif | 1052 #endif |
1047 | 1053 |
1048 // Don't dump stuff here, follow the same order as the header. | 1054 // Don't dump stuff here, follow the same order as the header. |
1049 | 1055 |
1050 } // namespace switches | 1056 } // namespace switches |
OLD | NEW |