| 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 963 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 974 | 974 |
| 975 // Disables WebRTC device enumeration. | 975 // Disables WebRTC device enumeration. |
| 976 const char kDisableDeviceEnumeration[] = "disable-device-enumeration"; | 976 const char kDisableDeviceEnumeration[] = "disable-device-enumeration"; |
| 977 | 977 |
| 978 // Disables WebRTC DataChannels SCTP wire protocol support. | 978 // Disables WebRTC DataChannels SCTP wire protocol support. |
| 979 const char kDisableSCTPDataChannels[] = "disable-sctp-data-channels"; | 979 const char kDisableSCTPDataChannels[] = "disable-sctp-data-channels"; |
| 980 | 980 |
| 981 // Disables HW decode acceleration for WebRTC. | 981 // Disables HW decode acceleration for WebRTC. |
| 982 const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; | 982 const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; |
| 983 | 983 |
| 984 const char KEnableSurfaceTextureBuffer[] = "enable-surface-texture-buffer"; |
| 985 |
| 984 // Disables encryption of RTP Media for WebRTC. When Chrome embeds Content, it | 986 // Disables encryption of RTP Media for WebRTC. When Chrome embeds Content, it |
| 985 // ignores this switch on its stable and beta channels. | 987 // ignores this switch on its stable and beta channels. |
| 986 const char kDisableWebRtcEncryption[] = "disable-webrtc-encryption"; | 988 const char kDisableWebRtcEncryption[] = "disable-webrtc-encryption"; |
| 987 | 989 |
| 988 // Disables HW encode acceleration for WebRTC. | 990 // Disables HW encode acceleration for WebRTC. |
| 989 const char kDisableWebRtcHWEncoding[] = "disable-webrtc-hw-encoding"; | 991 const char kDisableWebRtcHWEncoding[] = "disable-webrtc-hw-encoding"; |
| 990 | 992 |
| 991 // Enables WebRTC AEC recordings. | 993 // Enables WebRTC AEC recordings. |
| 992 const char kEnableWebRtcAecRecordings[] = "enable-webrtc-aec-recordings"; | 994 const char kEnableWebRtcAecRecordings[] = "enable-webrtc-aec-recordings"; |
| 993 | 995 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1055 #endif | 1057 #endif |
| 1056 | 1058 |
| 1057 #if defined(OS_POSIX) | 1059 #if defined(OS_POSIX) |
| 1058 // Causes the child processes to cleanly exit via calling exit(). | 1060 // Causes the child processes to cleanly exit via calling exit(). |
| 1059 const char kChildCleanExit[] = "child-clean-exit"; | 1061 const char kChildCleanExit[] = "child-clean-exit"; |
| 1060 #endif | 1062 #endif |
| 1061 | 1063 |
| 1062 // Don't dump stuff here, follow the same order as the header. | 1064 // Don't dump stuff here, follow the same order as the header. |
| 1063 | 1065 |
| 1064 } // namespace switches | 1066 } // namespace switches |
| OLD | NEW |