| 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 CONTENT_EXPORT extern const char kZygoteCmdPrefix[]; | 271 CONTENT_EXPORT extern const char kZygoteCmdPrefix[]; |
| 272 CONTENT_EXPORT extern const char kZygoteProcess[]; | 272 CONTENT_EXPORT extern const char kZygoteProcess[]; |
| 273 | 273 |
| 274 #if defined(ENABLE_WEBRTC) | 274 #if defined(ENABLE_WEBRTC) |
| 275 CONTENT_EXPORT extern const char kEnableAudioTrackProcessing[]; | 275 CONTENT_EXPORT extern const char kEnableAudioTrackProcessing[]; |
| 276 CONTENT_EXPORT extern const char kDisableDeviceEnumeration[]; | 276 CONTENT_EXPORT extern const char kDisableDeviceEnumeration[]; |
| 277 CONTENT_EXPORT extern const char kDisableSCTPDataChannels[]; | 277 CONTENT_EXPORT extern const char kDisableSCTPDataChannels[]; |
| 278 CONTENT_EXPORT extern const char kDisableWebRtcHWDecoding[]; | 278 CONTENT_EXPORT extern const char kDisableWebRtcHWDecoding[]; |
| 279 CONTENT_EXPORT extern const char kDisableWebRtcEncryption[]; | 279 CONTENT_EXPORT extern const char kDisableWebRtcEncryption[]; |
| 280 CONTENT_EXPORT extern const char kDisableWebRtcHWEncoding[]; | 280 CONTENT_EXPORT extern const char kDisableWebRtcHWEncoding[]; |
| 281 extern const char kEnableWebRtcAecRecordings[]; | 281 CONTENT_EXPORT extern const char kEnableWebRtcAecRecordings[]; |
| 282 extern const char kEnableWebRtcTcpServerSocket[]; | 282 extern const char kEnableWebRtcTcpServerSocket[]; |
| 283 CONTENT_EXPORT extern const char kEnableWebRtcHWVp8Encoding[]; | 283 CONTENT_EXPORT extern const char kEnableWebRtcHWVp8Encoding[]; |
| 284 #endif | 284 #endif |
| 285 | 285 |
| 286 #if defined(OS_ANDROID) | 286 #if defined(OS_ANDROID) |
| 287 CONTENT_EXPORT extern const char kDisableGestureRequirementForMediaFullscreen[]; | 287 CONTENT_EXPORT extern const char kDisableGestureRequirementForMediaFullscreen[]; |
| 288 CONTENT_EXPORT extern const char kDisableGestureRequirementForMediaPlayback[]; | 288 CONTENT_EXPORT extern const char kDisableGestureRequirementForMediaPlayback[]; |
| 289 extern const char kDisableMediaHistoryLogging[]; | 289 extern const char kDisableMediaHistoryLogging[]; |
| 290 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[]; | 290 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[]; |
| 291 CONTENT_EXPORT extern const char kDisableWebRTC[]; | 291 CONTENT_EXPORT extern const char kDisableWebRTC[]; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 314 #if defined(OS_POSIX) | 314 #if defined(OS_POSIX) |
| 315 extern const char kChildCleanExit[]; | 315 extern const char kChildCleanExit[]; |
| 316 #endif | 316 #endif |
| 317 | 317 |
| 318 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 318 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 319 // alphabetical order, or in one of the ifdefs (also in order in each section). | 319 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 320 | 320 |
| 321 } // namespace switches | 321 } // namespace switches |
| 322 | 322 |
| 323 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 323 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |