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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 CONTENT_EXPORT extern const char kWaitForDebuggerChildren[]; | 233 CONTENT_EXPORT extern const char kWaitForDebuggerChildren[]; |
234 CONTENT_EXPORT extern const char kZygoteCmdPrefix[]; | 234 CONTENT_EXPORT extern const char kZygoteCmdPrefix[]; |
235 CONTENT_EXPORT extern const char kZygoteProcess[]; | 235 CONTENT_EXPORT extern const char kZygoteProcess[]; |
236 | 236 |
237 #if defined(ENABLE_WEBRTC) | 237 #if defined(ENABLE_WEBRTC) |
238 CONTENT_EXPORT extern const char kDisableAudioTrackProcessing[]; | 238 CONTENT_EXPORT extern const char kDisableAudioTrackProcessing[]; |
239 CONTENT_EXPORT extern const char kDisableWebRtcHWDecoding[]; | 239 CONTENT_EXPORT extern const char kDisableWebRtcHWDecoding[]; |
240 CONTENT_EXPORT extern const char kDisableWebRtcEncryption[]; | 240 CONTENT_EXPORT extern const char kDisableWebRtcEncryption[]; |
241 CONTENT_EXPORT extern const char kDisableWebRtcHWEncoding[]; | 241 CONTENT_EXPORT extern const char kDisableWebRtcHWEncoding[]; |
242 CONTENT_EXPORT extern const char kEnableWebRtcHWVp8Encoding[]; | 242 CONTENT_EXPORT extern const char kEnableWebRtcHWVp8Encoding[]; |
| 243 CONTENT_EXPORT extern const char kEnableWebRtcHWH264Encoding[]; |
243 #endif | 244 #endif |
244 | 245 |
245 #if defined(OS_ANDROID) | 246 #if defined(OS_ANDROID) |
246 CONTENT_EXPORT extern const char kDisableGestureRequirementForMediaPlayback[]; | 247 CONTENT_EXPORT extern const char kDisableGestureRequirementForMediaPlayback[]; |
247 CONTENT_EXPORT extern const char kDisableClickDelay[]; | 248 CONTENT_EXPORT extern const char kDisableClickDelay[]; |
248 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[]; | 249 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[]; |
249 CONTENT_EXPORT extern const char kDisableWebRTC[]; | 250 CONTENT_EXPORT extern const char kDisableWebRTC[]; |
250 CONTENT_EXPORT extern const char kEnableSpeechRecognition[]; | 251 CONTENT_EXPORT extern const char kEnableSpeechRecognition[]; |
251 CONTENT_EXPORT extern const char kForceUseOverlayEmbeddedVideo[]; | 252 CONTENT_EXPORT extern const char kForceUseOverlayEmbeddedVideo[]; |
252 CONTENT_EXPORT extern const char kHideScrollbars[]; | 253 CONTENT_EXPORT extern const char kHideScrollbars[]; |
(...skipping 26 matching lines...) Expand all Loading... |
279 // mitigation. | 280 // mitigation. |
280 CONTENT_EXPORT extern const char kEnableWin32kRendererLockDown[]; | 281 CONTENT_EXPORT extern const char kEnableWin32kRendererLockDown[]; |
281 #endif | 282 #endif |
282 | 283 |
283 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 284 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
284 // alphabetical order, or in one of the ifdefs (also in order in each section). | 285 // alphabetical order, or in one of the ifdefs (also in order in each section). |
285 | 286 |
286 } // namespace switches | 287 } // namespace switches |
287 | 288 |
288 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 289 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |