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 870 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
881 // The prefix used when starting the zygote process. (i.e. 'gdb --args') | 881 // The prefix used when starting the zygote process. (i.e. 'gdb --args') |
882 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; | 882 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; |
883 | 883 |
884 // Causes the process to run as a renderer zygote. | 884 // Causes the process to run as a renderer zygote. |
885 const char kZygoteProcess[] = "zygote"; | 885 const char kZygoteProcess[] = "zygote"; |
886 | 886 |
887 #if defined(ENABLE_WEBRTC) | 887 #if defined(ENABLE_WEBRTC) |
888 // Disable WebRTC device enumeration. | 888 // Disable WebRTC device enumeration. |
889 const char kDisableDeviceEnumeration[] = "disable-device-enumeration"; | 889 const char kDisableDeviceEnumeration[] = "disable-device-enumeration"; |
890 | 890 |
891 // Enable WebRTC DataChannels SCTP wire protocol support. | 891 // Disable WebRTC DataChannels SCTP wire protocol support. |
892 const char kEnableSCTPDataChannels[] = "enable-sctp-data-channels"; | 892 const char kDisableSCTPDataChannels[] = "disable-sctp-data-channels"; |
893 | 893 |
894 // Enables WebRTC AEC recordings. | 894 // Enables WebRTC AEC recordings. |
895 const char kEnableWebRtcAecRecordings[] = "enable-webrtc-aec-recordings"; | 895 const char kEnableWebRtcAecRecordings[] = "enable-webrtc-aec-recordings"; |
896 | 896 |
897 // Enables HW decode acceleration for WebRTC. | 897 // Enables HW decode acceleration for WebRTC. |
898 const char kEnableWebRtcHWDecoding[] = "enable-webrtc-hw-decoding"; | 898 const char kEnableWebRtcHWDecoding[] = "enable-webrtc-hw-decoding"; |
899 | 899 |
900 // Enables HW encode acceleration for WebRTC. | 900 // Enables HW encode acceleration for WebRTC. |
901 const char kEnableWebRtcHWEncoding[] = "enable-webrtc-hw-encoding"; | 901 const char kEnableWebRtcHWEncoding[] = "enable-webrtc-hw-encoding"; |
902 | 902 |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
956 #endif | 956 #endif |
957 | 957 |
958 #if defined(USE_AURA) | 958 #if defined(USE_AURA) |
959 // Forces usage of the test compositor. Needed to run ui tests on bots. | 959 // Forces usage of the test compositor. Needed to run ui tests on bots. |
960 extern const char kTestCompositor[] = "test-compositor"; | 960 extern const char kTestCompositor[] = "test-compositor"; |
961 #endif | 961 #endif |
962 | 962 |
963 // Don't dump stuff here, follow the same order as the header. | 963 // Don't dump stuff here, follow the same order as the header. |
964 | 964 |
965 } // namespace switches | 965 } // namespace switches |
OLD | NEW |