| 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 847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 858 // kWaitForDebugger flag passed on or not. | 858 // kWaitForDebugger flag passed on or not. |
| 859 const char kWaitForDebuggerChildren[] = "wait-for-debugger-children"; | 859 const char kWaitForDebuggerChildren[] = "wait-for-debugger-children"; |
| 860 | 860 |
| 861 // The prefix used when starting the zygote process. (i.e. 'gdb --args') | 861 // The prefix used when starting the zygote process. (i.e. 'gdb --args') |
| 862 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; | 862 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; |
| 863 | 863 |
| 864 // Causes the process to run as a renderer zygote. | 864 // Causes the process to run as a renderer zygote. |
| 865 const char kZygoteProcess[] = "zygote"; | 865 const char kZygoteProcess[] = "zygote"; |
| 866 | 866 |
| 867 #if defined(ENABLE_WEBRTC) | 867 #if defined(ENABLE_WEBRTC) |
| 868 // Disables audio processing in a MediaStreamTrack. When this flag is on, AEC, | |
| 869 // NS and AGC will be done in PeerConnection instead of MediaStreamTrack. | |
| 870 const char kDisableAudioTrackProcessing[] = "disable-audio-track-processing"; | |
| 871 | |
| 872 // Disables HW decode acceleration for WebRTC. | 868 // Disables HW decode acceleration for WebRTC. |
| 873 const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; | 869 const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; |
| 874 | 870 |
| 875 // Disables encryption of RTP Media for WebRTC. When Chrome embeds Content, it | 871 // Disables encryption of RTP Media for WebRTC. When Chrome embeds Content, it |
| 876 // ignores this switch on its stable and beta channels. | 872 // ignores this switch on its stable and beta channels. |
| 877 const char kDisableWebRtcEncryption[] = "disable-webrtc-encryption"; | 873 const char kDisableWebRtcEncryption[] = "disable-webrtc-encryption"; |
| 878 | 874 |
| 879 // Disables HW encode acceleration for WebRTC. | 875 // Disables HW encode acceleration for WebRTC. |
| 880 const char kDisableWebRtcHWEncoding[] = "disable-webrtc-hw-encoding"; | 876 const char kDisableWebRtcHWEncoding[] = "disable-webrtc-hw-encoding"; |
| 881 | 877 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 968 #endif | 964 #endif |
| 969 | 965 |
| 970 #if defined(ENABLE_PLUGINS) | 966 #if defined(ENABLE_PLUGINS) |
| 971 // Enables the plugin power saver feature. | 967 // Enables the plugin power saver feature. |
| 972 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; | 968 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; |
| 973 #endif | 969 #endif |
| 974 | 970 |
| 975 // Don't dump stuff here, follow the same order as the header. | 971 // Don't dump stuff here, follow the same order as the header. |
| 976 | 972 |
| 977 } // namespace switches | 973 } // namespace switches |
| OLD | NEW |