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 909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
920 // Causes the process to run as a worker subprocess. | 920 // Causes the process to run as a worker subprocess. |
921 const char kWorkerProcess[] = "worker"; | 921 const char kWorkerProcess[] = "worker"; |
922 | 922 |
923 // 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') |
924 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; | 924 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; |
925 | 925 |
926 // Causes the process to run as a renderer zygote. | 926 // Causes the process to run as a renderer zygote. |
927 const char kZygoteProcess[] = "zygote"; | 927 const char kZygoteProcess[] = "zygote"; |
928 | 928 |
929 #if defined(ENABLE_WEBRTC) | 929 #if defined(ENABLE_WEBRTC) |
930 // Enables audio processing in a MediaStreamTrack. When this flag is on, AEC, | 930 // Disables audio processing in a MediaStreamTrack. When this flag is on, AEC, |
931 // NS and AGC will be done per MediaStreamTrack instead of in PeerConnection. | 931 // NS and AGC will be done in PeerConnection instead of MediaStreamTrack. |
932 const char kEnableAudioTrackProcessing[] = "enable-audio-track-processing"; | 932 const char kDisableAudioTrackProcessing[] = "disable-audio-track-processing"; |
933 | 933 |
934 // Disables WebRTC device enumeration. | 934 // Disables WebRTC device enumeration. |
935 const char kDisableDeviceEnumeration[] = "disable-device-enumeration"; | 935 const char kDisableDeviceEnumeration[] = "disable-device-enumeration"; |
936 | 936 |
937 // Disables HW decode acceleration for WebRTC. | 937 // Disables HW decode acceleration for WebRTC. |
938 const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; | 938 const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; |
939 | 939 |
940 // Disables encryption of RTP Media for WebRTC. When Chrome embeds Content, it | 940 // Disables encryption of RTP Media for WebRTC. When Chrome embeds Content, it |
941 // ignores this switch on its stable and beta channels. | 941 // ignores this switch on its stable and beta channels. |
942 const char kDisableWebRtcEncryption[] = "disable-webrtc-encryption"; | 942 const char kDisableWebRtcEncryption[] = "disable-webrtc-encryption"; |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
996 | 996 |
997 // Disables support for Core Animation plugins. This is triggered when | 997 // Disables support for Core Animation plugins. This is triggered when |
998 // accelerated compositing is disabled. See http://crbug.com/122430 . | 998 // accelerated compositing is disabled. See http://crbug.com/122430 . |
999 const char kDisableCoreAnimationPlugins[] = | 999 const char kDisableCoreAnimationPlugins[] = |
1000 "disable-core-animation-plugins"; | 1000 "disable-core-animation-plugins"; |
1001 #endif | 1001 #endif |
1002 | 1002 |
1003 // Don't dump stuff here, follow the same order as the header. | 1003 // Don't dump stuff here, follow the same order as the header. |
1004 | 1004 |
1005 } // namespace switches | 1005 } // namespace switches |
OLD | NEW |