| 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 // Defines all the "content" command-line switches. | 5 // Defines all the "content" command-line switches. |
| 6 | 6 |
| 7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| 8 #define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 8 #define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 extern const char kSpeechRecognitionWebserviceKey[]; | 81 extern const char kSpeechRecognitionWebserviceKey[]; |
| 82 CONTENT_EXPORT extern const char kEnableSpeechSynthesis[]; | 82 CONTENT_EXPORT extern const char kEnableSpeechSynthesis[]; |
| 83 #if defined(OS_ANDROID) | 83 #if defined(OS_ANDROID) |
| 84 CONTENT_EXPORT extern const char kDisableWebRTC[]; | 84 CONTENT_EXPORT extern const char kDisableWebRTC[]; |
| 85 CONTENT_EXPORT extern const char kEnableSpeechRecognition[]; | 85 CONTENT_EXPORT extern const char kEnableSpeechRecognition[]; |
| 86 #endif | 86 #endif |
| 87 CONTENT_EXPORT extern const char kDisableWebAudio[]; | 87 CONTENT_EXPORT extern const char kDisableWebAudio[]; |
| 88 #if defined(ENABLE_WEBRTC) | 88 #if defined(ENABLE_WEBRTC) |
| 89 extern const char kEnableWebRtcAecRecordings[]; | 89 extern const char kEnableWebRtcAecRecordings[]; |
| 90 CONTENT_EXPORT extern const char kEnableSCTPDataChannels[]; | 90 CONTENT_EXPORT extern const char kEnableSCTPDataChannels[]; |
| 91 extern const char kEnableWebRtcHWDecoding[]; |
| 91 #endif | 92 #endif |
| 92 extern const char kEnableWebRtcTcpServerSocket[]; | 93 extern const char kEnableWebRtcTcpServerSocket[]; |
| 93 extern const char kEnableWebMIDI[]; | 94 extern const char kEnableWebMIDI[]; |
| 94 extern const char kDisableWebSecurity[]; | 95 extern const char kDisableWebSecurity[]; |
| 95 extern const char kEnableExperimentalWebSocket[]; | 96 extern const char kEnableExperimentalWebSocket[]; |
| 96 extern const char kDisableXSSAuditor[]; | 97 extern const char kDisableXSSAuditor[]; |
| 97 CONTENT_EXPORT extern const char kDomAutomationController[]; | 98 CONTENT_EXPORT extern const char kDomAutomationController[]; |
| 98 CONTENT_EXPORT extern const char kStatsCollectionController[]; | 99 CONTENT_EXPORT extern const char kStatsCollectionController[]; |
| 99 CONTENT_EXPORT extern const char kEnableAcceleratedFilters[]; | 100 CONTENT_EXPORT extern const char kEnableAcceleratedFilters[]; |
| 100 extern const char kEnableAccessibilityLogging[]; | 101 extern const char kEnableAccessibilityLogging[]; |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 CONTENT_EXPORT extern const char kTestCompositor[]; | 271 CONTENT_EXPORT extern const char kTestCompositor[]; |
| 271 #endif | 272 #endif |
| 272 | 273 |
| 273 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; | 274 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; |
| 274 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[]; | 275 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[]; |
| 275 CONTENT_EXPORT extern const char kEnableWebGLDraftExtensions[]; | 276 CONTENT_EXPORT extern const char kEnableWebGLDraftExtensions[]; |
| 276 | 277 |
| 277 } // namespace switches | 278 } // namespace switches |
| 278 | 279 |
| 279 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 280 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |