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