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 860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
871 // kWaitForDebugger flag passed on or not. | 871 // kWaitForDebugger flag passed on or not. |
872 const char kWaitForDebuggerChildren[] = "wait-for-debugger-children"; | 872 const char kWaitForDebuggerChildren[] = "wait-for-debugger-children"; |
873 | 873 |
874 // The prefix used when starting the zygote process. (i.e. 'gdb --args') | 874 // The prefix used when starting the zygote process. (i.e. 'gdb --args') |
875 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; | 875 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; |
876 | 876 |
877 // Causes the process to run as a renderer zygote. | 877 // Causes the process to run as a renderer zygote. |
878 const char kZygoteProcess[] = "zygote"; | 878 const char kZygoteProcess[] = "zygote"; |
879 | 879 |
880 #if defined(ENABLE_WEBRTC) | 880 #if defined(ENABLE_WEBRTC) |
881 // Disables audio processing in a MediaStreamTrack. When this flag is on, AEC, | |
882 // NS and AGC will be done in PeerConnection instead of MediaStreamTrack. | |
883 const char kDisableAudioTrackProcessing[] = "disable-audio-track-processing"; | |
884 | |
885 // Disables HW decode acceleration for WebRTC. | 881 // Disables HW decode acceleration for WebRTC. |
886 const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; | 882 const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; |
887 | 883 |
888 // Disables encryption of RTP Media for WebRTC. When Chrome embeds Content, it | 884 // Disables encryption of RTP Media for WebRTC. When Chrome embeds Content, it |
889 // ignores this switch on its stable and beta channels. | 885 // ignores this switch on its stable and beta channels. |
890 const char kDisableWebRtcEncryption[] = "disable-webrtc-encryption"; | 886 const char kDisableWebRtcEncryption[] = "disable-webrtc-encryption"; |
891 | 887 |
892 // Disables HW encode acceleration for WebRTC. | 888 // Disables HW encode acceleration for WebRTC. |
893 const char kDisableWebRtcHWEncoding[] = "disable-webrtc-hw-encoding"; | 889 const char kDisableWebRtcHWEncoding[] = "disable-webrtc-hw-encoding"; |
894 | 890 |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
982 #endif | 978 #endif |
983 | 979 |
984 #if defined(ENABLE_PLUGINS) | 980 #if defined(ENABLE_PLUGINS) |
985 // Enables the plugin power saver feature. | 981 // Enables the plugin power saver feature. |
986 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; | 982 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; |
987 #endif | 983 #endif |
988 | 984 |
989 // 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. |
990 | 986 |
991 } // namespace switches | 987 } // namespace switches |
OLD | NEW |