| 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 | 278 |
| 279 #if defined(OS_ANDROID) | 279 #if defined(OS_ANDROID) |
| 280 CONTENT_EXPORT extern const char kDisableMediaSessionAPI[]; | 280 CONTENT_EXPORT extern const char kDisableMediaSessionAPI[]; |
| 281 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[]; | 281 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[]; |
| 282 CONTENT_EXPORT extern const char kDisablePullToRefreshEffect[]; | 282 CONTENT_EXPORT extern const char kDisablePullToRefreshEffect[]; |
| 283 CONTENT_EXPORT extern const char kDisableScreenOrientationLock[]; | 283 CONTENT_EXPORT extern const char kDisableScreenOrientationLock[]; |
| 284 CONTENT_EXPORT extern const char kEnableAdaptiveSelectionHandleOrientation[]; | 284 CONTENT_EXPORT extern const char kEnableAdaptiveSelectionHandleOrientation[]; |
| 285 CONTENT_EXPORT extern const char kEnableContentIntentDetection[]; | 285 CONTENT_EXPORT extern const char kEnableContentIntentDetection[]; |
| 286 CONTENT_EXPORT extern const char kEnableLongpressDragSelection[]; | 286 CONTENT_EXPORT extern const char kEnableLongpressDragSelection[]; |
| 287 CONTENT_EXPORT extern const char kHideScrollbars[]; | 287 CONTENT_EXPORT extern const char kHideScrollbars[]; |
| 288 extern const char kMediaPlaybackGestureWhitelistScope[]; |
| 288 extern const char kNetworkCountryIso[]; | 289 extern const char kNetworkCountryIso[]; |
| 289 CONTENT_EXPORT extern const char kProgressBarCompletion[]; | 290 CONTENT_EXPORT extern const char kProgressBarCompletion[]; |
| 290 CONTENT_EXPORT extern const char kRemoteDebuggingSocketName[]; | 291 CONTENT_EXPORT extern const char kRemoteDebuggingSocketName[]; |
| 291 CONTENT_EXPORT extern const char kRendererWaitForJavaDebugger[]; | 292 CONTENT_EXPORT extern const char kRendererWaitForJavaDebugger[]; |
| 292 CONTENT_EXPORT extern const char kEnableOSKOverscroll[]; | 293 CONTENT_EXPORT extern const char kEnableOSKOverscroll[]; |
| 293 #endif | 294 #endif |
| 294 | 295 |
| 295 #if defined(OS_CHROMEOS) | 296 #if defined(OS_CHROMEOS) |
| 296 CONTENT_EXPORT extern const char kDisablePanelFitting[]; | 297 CONTENT_EXPORT extern const char kDisablePanelFitting[]; |
| 297 CONTENT_EXPORT extern const char kDisableVaapiAcceleratedVideoEncode[]; | 298 CONTENT_EXPORT extern const char kDisableVaapiAcceleratedVideoEncode[]; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 326 extern const char kIpcDumpDirectory[]; | 327 extern const char kIpcDumpDirectory[]; |
| 327 extern const char kIpcFuzzerTestcase[]; | 328 extern const char kIpcFuzzerTestcase[]; |
| 328 #endif | 329 #endif |
| 329 | 330 |
| 330 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 331 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 331 // alphabetical order, or in one of the ifdefs (also in order in each section). | 332 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 332 | 333 |
| 333 } // namespace switches | 334 } // namespace switches |
| 334 | 335 |
| 335 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 336 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |