| 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 | 914 |
| 915 // Disables HW decode acceleration for WebRTC. | 915 // Disables HW decode acceleration for WebRTC. |
| 916 const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; | 916 const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; |
| 917 | 917 |
| 918 // Disables HW encode acceleration for WebRTC. | 918 // Disables HW encode acceleration for WebRTC. |
| 919 const char kDisableWebRtcHWEncoding[] = "disable-webrtc-hw-encoding"; | 919 const char kDisableWebRtcHWEncoding[] = "disable-webrtc-hw-encoding"; |
| 920 | 920 |
| 921 // Disables HW VP8 encode acceleration for WebRTC. | 921 // Disables HW VP8 encode acceleration for WebRTC. |
| 922 const char kDisableWebRtcHWVP8Encoding[] = "disable-webrtc-hw-vp8-encoding"; | 922 const char kDisableWebRtcHWVP8Encoding[] = "disable-webrtc-hw-vp8-encoding"; |
| 923 | 923 |
| 924 // Enables negotiation of GCM cipher suites from RFC 7714 for SRTP in WebRTC. |
| 925 // See https://tools.ietf.org/html/rfc7714 for further information. |
| 926 const char kEnableWebRtcSrtpAesGcm[] = "enable-webrtc-srtp-aes-gcm"; |
| 927 |
| 924 // Enables Origin header in Stun messages for WebRTC. | 928 // Enables Origin header in Stun messages for WebRTC. |
| 925 const char kEnableWebRtcStunOrigin[] = "enable-webrtc-stun-origin"; | 929 const char kEnableWebRtcStunOrigin[] = "enable-webrtc-stun-origin"; |
| 926 | 930 |
| 927 // 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 |
| 928 // not under finch and becomes the default. | 932 // not under finch and becomes the default. |
| 929 const char kEnforceWebRtcIPPermissionCheck[] = | 933 const char kEnforceWebRtcIPPermissionCheck[] = |
| 930 "enforce-webrtc-ip-permission-check"; | 934 "enforce-webrtc-ip-permission-check"; |
| 931 | 935 |
| 932 // Override WebRTC IP handling policy to mimic the behavior when WebRTC IP | 936 // Override WebRTC IP handling policy to mimic the behavior when WebRTC IP |
| 933 // handling policy is specified in Preferences. | 937 // handling policy is specified in Preferences. |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1081 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1085 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1082 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1086 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1083 | 1087 |
| 1084 // Specifies the testcase used by the IPC fuzzer. | 1088 // Specifies the testcase used by the IPC fuzzer. |
| 1085 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1089 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1086 #endif | 1090 #endif |
| 1087 | 1091 |
| 1088 // Don't dump stuff here, follow the same order as the header. | 1092 // Don't dump stuff here, follow the same order as the header. |
| 1089 | 1093 |
| 1090 } // namespace switches | 1094 } // namespace switches |
| OLD | NEW |