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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 extern const char kUtilityProcessAllowedDir[]; | 243 extern const char kUtilityProcessAllowedDir[]; |
244 CONTENT_EXPORT extern const char kUtilityProcessEnableMDns[]; | 244 CONTENT_EXPORT extern const char kUtilityProcessEnableMDns[]; |
245 CONTENT_EXPORT extern const char kWaitForDebuggerChildren[]; | 245 CONTENT_EXPORT extern const char kWaitForDebuggerChildren[]; |
246 extern const char kWebCoreLogChannels[]; | 246 extern const char kWebCoreLogChannels[]; |
247 CONTENT_EXPORT extern const char kWorkerProcess[]; | 247 CONTENT_EXPORT extern const char kWorkerProcess[]; |
248 CONTENT_EXPORT extern const char kZygoteCmdPrefix[]; | 248 CONTENT_EXPORT extern const char kZygoteCmdPrefix[]; |
249 CONTENT_EXPORT extern const char kZygoteProcess[]; | 249 CONTENT_EXPORT extern const char kZygoteProcess[]; |
250 | 250 |
251 #if defined(ENABLE_WEBRTC) | 251 #if defined(ENABLE_WEBRTC) |
252 CONTENT_EXPORT extern const char kDisableDeviceEnumeration[]; | 252 CONTENT_EXPORT extern const char kDisableDeviceEnumeration[]; |
253 CONTENT_EXPORT extern const char kEnableSCTPDataChannels[]; | 253 CONTENT_EXPORT extern const char kDisableSCTPDataChannels[]; |
254 extern const char kEnableWebRtcAecRecordings[]; | 254 extern const char kEnableWebRtcAecRecordings[]; |
255 extern const char kEnableWebRtcHWDecoding[]; | 255 extern const char kEnableWebRtcHWDecoding[]; |
256 extern const char kEnableWebRtcHWEncoding[]; | 256 extern const char kEnableWebRtcHWEncoding[]; |
257 #endif | 257 #endif |
258 | 258 |
259 #if defined(OS_ANDROID) | 259 #if defined(OS_ANDROID) |
260 CONTENT_EXPORT extern const char kDisableDeviceMotion[]; | 260 CONTENT_EXPORT extern const char kDisableDeviceMotion[]; |
261 CONTENT_EXPORT extern const char kDisableGestureRequirementForMediaPlayback[]; | 261 CONTENT_EXPORT extern const char kDisableGestureRequirementForMediaPlayback[]; |
262 extern const char kDisableMediaHistoryLogging[]; | 262 extern const char kDisableMediaHistoryLogging[]; |
263 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[]; | 263 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[]; |
(...skipping 21 matching lines...) Expand all Loading... |
285 #if defined(USE_AURA) | 285 #if defined(USE_AURA) |
286 CONTENT_EXPORT extern const char kTestCompositor[]; | 286 CONTENT_EXPORT extern const char kTestCompositor[]; |
287 #endif | 287 #endif |
288 | 288 |
289 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 289 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
290 // alphabetical order, or in one of the ifdefs (also in order in each section). | 290 // alphabetical order, or in one of the ifdefs (also in order in each section). |
291 | 291 |
292 } // namespace switches | 292 } // namespace switches |
293 | 293 |
294 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 294 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |