| 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
| 7 #include "media/media_features.h" | 7 #include "media/media_features.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 903 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 914 // Disables encryption of RTP Media for WebRTC. When Chrome embeds Content, it | 914 // Disables encryption of RTP Media for WebRTC. When Chrome embeds Content, it |
| 915 // ignores this switch on its stable and beta channels. | 915 // ignores this switch on its stable and beta channels. |
| 916 const char kDisableWebRtcEncryption[] = "disable-webrtc-encryption"; | 916 const char kDisableWebRtcEncryption[] = "disable-webrtc-encryption"; |
| 917 | 917 |
| 918 // Disables HW decode acceleration for WebRTC. | 918 // Disables HW decode acceleration for WebRTC. |
| 919 const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; | 919 const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; |
| 920 | 920 |
| 921 // Disables HW encode acceleration for WebRTC. | 921 // Disables HW encode acceleration for WebRTC. |
| 922 const char kDisableWebRtcHWEncoding[] = "disable-webrtc-hw-encoding"; | 922 const char kDisableWebRtcHWEncoding[] = "disable-webrtc-hw-encoding"; |
| 923 | 923 |
| 924 // Disables HW VP8 encode acceleration for WebRTC. | |
| 925 const char kDisableWebRtcHWVP8Encoding[] = "disable-webrtc-hw-vp8-encoding"; | |
| 926 | |
| 927 // Enables negotiation of GCM cipher suites from RFC 7714 for SRTP in WebRTC. | 924 // Enables negotiation of GCM cipher suites from RFC 7714 for SRTP in WebRTC. |
| 928 // See https://tools.ietf.org/html/rfc7714 for further information. | 925 // See https://tools.ietf.org/html/rfc7714 for further information. |
| 929 const char kEnableWebRtcSrtpAesGcm[] = "enable-webrtc-srtp-aes-gcm"; | 926 const char kEnableWebRtcSrtpAesGcm[] = "enable-webrtc-srtp-aes-gcm"; |
| 930 | 927 |
| 931 // Enables Origin header in Stun messages for WebRTC. | 928 // Enables Origin header in Stun messages for WebRTC. |
| 932 const char kEnableWebRtcStunOrigin[] = "enable-webrtc-stun-origin"; | 929 const char kEnableWebRtcStunOrigin[] = "enable-webrtc-stun-origin"; |
| 933 | 930 |
| 934 // Enforce IP Permission check. TODO(guoweis): Remove this once the feature is | 931 // Enforce IP Permission check. TODO(guoweis): Remove this once the feature is |
| 935 // not under finch and becomes the default. | 932 // not under finch and becomes the default. |
| 936 const char kEnforceWebRtcIPPermissionCheck[] = | 933 const char kEnforceWebRtcIPPermissionCheck[] = |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1084 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1081 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1085 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1082 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1086 | 1083 |
| 1087 // Specifies the testcase used by the IPC fuzzer. | 1084 // Specifies the testcase used by the IPC fuzzer. |
| 1088 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1085 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1089 #endif | 1086 #endif |
| 1090 | 1087 |
| 1091 // Don't dump stuff here, follow the same order as the header. | 1088 // Don't dump stuff here, follow the same order as the header. |
| 1092 | 1089 |
| 1093 } // namespace switches | 1090 } // namespace switches |
| OLD | NEW |