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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[]; | 269 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[]; |
270 CONTENT_EXPORT extern const char kDisablePullToRefreshEffect[]; | 270 CONTENT_EXPORT extern const char kDisablePullToRefreshEffect[]; |
271 CONTENT_EXPORT extern const char kDisableScreenOrientationLock[]; | 271 CONTENT_EXPORT extern const char kDisableScreenOrientationLock[]; |
272 CONTENT_EXPORT extern const char kEnableAdaptiveSelectionHandleOrientation[]; | 272 CONTENT_EXPORT extern const char kEnableAdaptiveSelectionHandleOrientation[]; |
273 CONTENT_EXPORT extern const char kEnableLongpressDragSelection[]; | 273 CONTENT_EXPORT extern const char kEnableLongpressDragSelection[]; |
274 CONTENT_EXPORT extern const char kIPCSyncCompositing[]; | 274 CONTENT_EXPORT extern const char kIPCSyncCompositing[]; |
275 CONTENT_EXPORT extern const char kHideScrollbars[]; | 275 CONTENT_EXPORT extern const char kHideScrollbars[]; |
276 extern const char kNetworkCountryIso[]; | 276 extern const char kNetworkCountryIso[]; |
277 CONTENT_EXPORT extern const char kRemoteDebuggingSocketName[]; | 277 CONTENT_EXPORT extern const char kRemoteDebuggingSocketName[]; |
278 CONTENT_EXPORT extern const char kRendererWaitForJavaDebugger[]; | 278 CONTENT_EXPORT extern const char kRendererWaitForJavaDebugger[]; |
| 279 CONTENT_EXPORT extern const char kEnableImeThread[]; |
| 280 CONTENT_EXPORT extern const char kDisableImeThread[]; |
279 #endif | 281 #endif |
280 | 282 |
281 CONTENT_EXPORT extern const char kDisableWebAudio[]; | 283 CONTENT_EXPORT extern const char kDisableWebAudio[]; |
282 | 284 |
283 #if defined(OS_CHROMEOS) | 285 #if defined(OS_CHROMEOS) |
284 CONTENT_EXPORT extern const char kDisablePanelFitting[]; | 286 CONTENT_EXPORT extern const char kDisablePanelFitting[]; |
285 CONTENT_EXPORT extern const char kDisableVaapiAcceleratedVideoEncode[]; | 287 CONTENT_EXPORT extern const char kDisableVaapiAcceleratedVideoEncode[]; |
286 #endif | 288 #endif |
287 | 289 |
288 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 290 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
(...skipping 23 matching lines...) Expand all Loading... |
312 CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[]; | 314 CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[]; |
313 CONTENT_EXPORT extern const char kTraceExportEventsToETW[]; | 315 CONTENT_EXPORT extern const char kTraceExportEventsToETW[]; |
314 #endif | 316 #endif |
315 | 317 |
316 // 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 |
317 // 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). |
318 | 320 |
319 } // namespace switches | 321 } // namespace switches |
320 | 322 |
321 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 323 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |