Chromium Code Reviews| 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 namespace switches { | 7 namespace switches { |
| 8 | 8 |
| 9 // By default, file:// URIs cannot read other file:// URIs. This is an | 9 // By default, file:// URIs cannot read other file:// URIs. This is an |
| 10 // override for developers who need the old behavior for testing. | 10 // override for developers who need the old behavior for testing. |
| (...skipping 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 916 #if defined(ENABLE_WEBRTC) | 916 #if defined(ENABLE_WEBRTC) |
| 917 // Disable WebRTC device enumeration. | 917 // Disable WebRTC device enumeration. |
| 918 const char kDisableDeviceEnumeration[] = "disable-device-enumeration"; | 918 const char kDisableDeviceEnumeration[] = "disable-device-enumeration"; |
| 919 | 919 |
| 920 // Disable WebRTC DataChannels SCTP wire protocol support. | 920 // Disable WebRTC DataChannels SCTP wire protocol support. |
| 921 const char kDisableSCTPDataChannels[] = "disable-sctp-data-channels"; | 921 const char kDisableSCTPDataChannels[] = "disable-sctp-data-channels"; |
| 922 | 922 |
| 923 // Disables HW decode acceleration for WebRTC. | 923 // Disables HW decode acceleration for WebRTC. |
| 924 const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; | 924 const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; |
| 925 | 925 |
| 926 // Disables encryption of RTP Media for WebRTC. | |
|
Jói
2013/10/23 21:57:18
The comments here are usually the canonical descri
Henrik Grunell
2013/10/24 10:01:13
Done.
| |
| 927 const char kDisableWebRtcEncryption[] = "disable-webrtc-encryption"; | |
| 928 | |
| 926 // Disables HW encode acceleration for WebRTC. | 929 // Disables HW encode acceleration for WebRTC. |
| 927 const char kDisableWebRtcHWEncoding[] = "disable-webrtc-hw-encoding"; | 930 const char kDisableWebRtcHWEncoding[] = "disable-webrtc-hw-encoding"; |
| 928 | 931 |
| 929 // Enables WebRTC AEC recordings. | 932 // Enables WebRTC AEC recordings. |
| 930 const char kEnableWebRtcAecRecordings[] = "enable-webrtc-aec-recordings"; | 933 const char kEnableWebRtcAecRecordings[] = "enable-webrtc-aec-recordings"; |
| 931 | 934 |
| 932 // Enable WebRTC to open TCP server sockets. | 935 // Enable WebRTC to open TCP server sockets. |
| 933 const char kEnableWebRtcTcpServerSocket[] = "enable-webrtc-tcp-server-socket"; | 936 const char kEnableWebRtcTcpServerSocket[] = "enable-webrtc-tcp-server-socket"; |
| 934 | 937 |
| 935 // Enables VP8 HW encode acceleration for WebRTC. | 938 // Enables VP8 HW encode acceleration for WebRTC. |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 991 #endif | 994 #endif |
| 992 | 995 |
| 993 #if defined(USE_AURA) | 996 #if defined(USE_AURA) |
| 994 // Forces usage of the test compositor. Needed to run ui tests on bots. | 997 // Forces usage of the test compositor. Needed to run ui tests on bots. |
| 995 extern const char kTestCompositor[] = "test-compositor"; | 998 extern const char kTestCompositor[] = "test-compositor"; |
| 996 #endif | 999 #endif |
| 997 | 1000 |
| 998 // Don't dump stuff here, follow the same order as the header. | 1001 // Don't dump stuff here, follow the same order as the header. |
| 999 | 1002 |
| 1000 } // namespace switches | 1003 } // namespace switches |
| OLD | NEW |