| 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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 CONTENT_EXPORT extern const char kEnableLongpressDragSelection[]; | 274 CONTENT_EXPORT extern const char kEnableLongpressDragSelection[]; |
| 275 CONTENT_EXPORT extern const char kIPCSyncCompositing[]; | 275 CONTENT_EXPORT extern const char kIPCSyncCompositing[]; |
| 276 CONTENT_EXPORT extern const char kHideScrollbars[]; | 276 CONTENT_EXPORT extern const char kHideScrollbars[]; |
| 277 extern const char kNetworkCountryIso[]; | 277 extern const char kNetworkCountryIso[]; |
| 278 CONTENT_EXPORT extern const char kRemoteDebuggingSocketName[]; | 278 CONTENT_EXPORT extern const char kRemoteDebuggingSocketName[]; |
| 279 CONTENT_EXPORT extern const char kRendererWaitForJavaDebugger[]; | 279 CONTENT_EXPORT extern const char kRendererWaitForJavaDebugger[]; |
| 280 #endif | 280 #endif |
| 281 | 281 |
| 282 #if defined(OS_CHROMEOS) | 282 #if defined(OS_CHROMEOS) |
| 283 CONTENT_EXPORT extern const char kDisablePanelFitting[]; | 283 CONTENT_EXPORT extern const char kDisablePanelFitting[]; |
| 284 #endif |
| 285 |
| 286 #if defined(OS_LINUX) |
| 284 CONTENT_EXPORT extern const char kDisableVaapiAcceleratedVideoEncode[]; | 287 CONTENT_EXPORT extern const char kDisableVaapiAcceleratedVideoEncode[]; |
| 285 #endif | 288 #endif |
| 286 | 289 |
| 287 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 290 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 288 CONTENT_EXPORT extern const char kEnableSpeechDispatcher[]; | 291 CONTENT_EXPORT extern const char kEnableSpeechDispatcher[]; |
| 289 #endif | 292 #endif |
| 290 | 293 |
| 291 #if defined(OS_MACOSX) && !defined(OS_IOS) | 294 #if defined(OS_MACOSX) && !defined(OS_IOS) |
| 292 extern const char kDisableCoreAnimationPlugins[]; | 295 extern const char kDisableCoreAnimationPlugins[]; |
| 293 extern const char kDisableThreadedEventHandlingMac[]; | 296 extern const char kDisableThreadedEventHandlingMac[]; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 311 CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[]; | 314 CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[]; |
| 312 CONTENT_EXPORT extern const char kTraceExportEventsToETW[]; | 315 CONTENT_EXPORT extern const char kTraceExportEventsToETW[]; |
| 313 #endif | 316 #endif |
| 314 | 317 |
| 315 // 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 |
| 316 // 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). |
| 317 | 320 |
| 318 } // namespace switches | 321 } // namespace switches |
| 319 | 322 |
| 320 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 323 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |