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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 extern const char kDisableMediaHistoryLogging[]; | 290 extern const char kDisableMediaHistoryLogging[]; |
291 CONTENT_EXPORT extern const char kDisableClickDelay[]; | 291 CONTENT_EXPORT extern const char kDisableClickDelay[]; |
292 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[]; | 292 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[]; |
293 CONTENT_EXPORT extern const char kDisableWebRTC[]; | 293 CONTENT_EXPORT extern const char kDisableWebRTC[]; |
294 CONTENT_EXPORT extern const char kEnableSpeechRecognition[]; | 294 CONTENT_EXPORT extern const char kEnableSpeechRecognition[]; |
295 CONTENT_EXPORT extern const char kHideScrollbars[]; | 295 CONTENT_EXPORT extern const char kHideScrollbars[]; |
296 extern const char kNetworkCountryIso[]; | 296 extern const char kNetworkCountryIso[]; |
297 CONTENT_EXPORT extern const char kRemoteDebuggingSocketName[]; | 297 CONTENT_EXPORT extern const char kRemoteDebuggingSocketName[]; |
298 #endif | 298 #endif |
299 | 299 |
300 #if defined(OS_ANDROID) && defined(ARCH_CPU_X86) | |
301 CONTENT_EXPORT extern const char kEnableWebAudio[]; | |
302 #else | |
303 CONTENT_EXPORT extern const char kDisableWebAudio[]; | 300 CONTENT_EXPORT extern const char kDisableWebAudio[]; |
304 #endif | |
305 | 301 |
306 #if defined(OS_CHROMEOS) | 302 #if defined(OS_CHROMEOS) |
307 CONTENT_EXPORT extern const char kDisablePanelFitting[]; | 303 CONTENT_EXPORT extern const char kDisablePanelFitting[]; |
308 #endif | 304 #endif |
309 | 305 |
310 #if defined(OS_MACOSX) && !defined(OS_IOS) | 306 #if defined(OS_MACOSX) && !defined(OS_IOS) |
311 extern const char kEnableCarbonInterposing[]; | 307 extern const char kEnableCarbonInterposing[]; |
312 extern const char kDisableCoreAnimationPlugins[]; | 308 extern const char kDisableCoreAnimationPlugins[]; |
313 #endif | 309 #endif |
314 | 310 |
315 #if defined(OS_POSIX) | 311 #if defined(OS_POSIX) |
316 extern const char kChildCleanExit[]; | 312 extern const char kChildCleanExit[]; |
317 #endif | 313 #endif |
318 | 314 |
319 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 315 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
320 // alphabetical order, or in one of the ifdefs (also in order in each section). | 316 // alphabetical order, or in one of the ifdefs (also in order in each section). |
321 | 317 |
322 } // namespace switches | 318 } // namespace switches |
323 | 319 |
324 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 320 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |