| 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 878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 889 // Causes the process to run as a worker subprocess. | 889 // Causes the process to run as a worker subprocess. |
| 890 const char kWorkerProcess[] = "worker"; | 890 const char kWorkerProcess[] = "worker"; |
| 891 | 891 |
| 892 // The prefix used when starting the zygote process. (i.e. 'gdb --args') | 892 // The prefix used when starting the zygote process. (i.e. 'gdb --args') |
| 893 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; | 893 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; |
| 894 | 894 |
| 895 // Causes the process to run as a renderer zygote. | 895 // Causes the process to run as a renderer zygote. |
| 896 const char kZygoteProcess[] = "zygote"; | 896 const char kZygoteProcess[] = "zygote"; |
| 897 | 897 |
| 898 #if defined(ENABLE_WEBRTC) | 898 #if defined(ENABLE_WEBRTC) |
| 899 // Disables audio processing in a MediaStreamTrack. When this flag is on, AEC, | 899 // Enables audio processing in a MediaStreamTrack. When this flag is on, AEC, |
| 900 // NS and AGC will be done in PeerConnection instead of MediaStreamTrack. | 900 // NS and AGC will be done per MediaStreamTrack instead of in PeerConnection. |
| 901 const char kDisableAudioTrackProcessing[] = "disable-audio-track-processing"; | 901 const char kEnableAudioTrackProcessing[] = "enable-audio-track-processing"; |
| 902 | 902 |
| 903 // Disables WebRTC device enumeration. | 903 // Disables WebRTC device enumeration. |
| 904 const char kDisableDeviceEnumeration[] = "disable-device-enumeration"; | 904 const char kDisableDeviceEnumeration[] = "disable-device-enumeration"; |
| 905 | 905 |
| 906 // Disables HW decode acceleration for WebRTC. | 906 // Disables HW decode acceleration for WebRTC. |
| 907 const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; | 907 const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; |
| 908 | 908 |
| 909 // Disables encryption of RTP Media for WebRTC. When Chrome embeds Content, it | 909 // Disables encryption of RTP Media for WebRTC. When Chrome embeds Content, it |
| 910 // ignores this switch on its stable and beta channels. | 910 // ignores this switch on its stable and beta channels. |
| 911 const char kDisableWebRtcEncryption[] = "disable-webrtc-encryption"; | 911 const char kDisableWebRtcEncryption[] = "disable-webrtc-encryption"; |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 978 // Enable the Win32K process mitigation policy for renderer processes which | 978 // Enable the Win32K process mitigation policy for renderer processes which |
| 979 // prevents them from invoking user32 and gdi32 system calls which enter | 979 // prevents them from invoking user32 and gdi32 system calls which enter |
| 980 // the kernel. This is only supported on Windows 8 and beyond. | 980 // the kernel. This is only supported on Windows 8 and beyond. |
| 981 const char kEnableWin32kRendererLockDown[] | 981 const char kEnableWin32kRendererLockDown[] |
| 982 = "enable_win32k_renderer_lockdown"; | 982 = "enable_win32k_renderer_lockdown"; |
| 983 #endif | 983 #endif |
| 984 | 984 |
| 985 // Don't dump stuff here, follow the same order as the header. | 985 // Don't dump stuff here, follow the same order as the header. |
| 986 | 986 |
| 987 } // namespace switches | 987 } // namespace switches |
| OLD | NEW |