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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 284 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
285 CONTENT_EXPORT extern const char kEnableSpeechDispatcher[]; | 285 CONTENT_EXPORT extern const char kEnableSpeechDispatcher[]; |
286 #endif | 286 #endif |
287 | 287 |
288 #if defined(OS_MACOSX) && !defined(OS_IOS) | 288 #if defined(OS_MACOSX) && !defined(OS_IOS) |
289 extern const char kDisableCoreAnimationPlugins[]; | 289 extern const char kDisableCoreAnimationPlugins[]; |
290 extern const char kDisableThreadedEventHandlingMac[]; | 290 extern const char kDisableThreadedEventHandlingMac[]; |
291 #endif | 291 #endif |
292 | 292 |
293 #if defined(OS_WIN) | 293 #if defined(OS_WIN) |
| 294 CONTENT_EXPORT extern const char kPrefetchArgumentRenderer[]; |
| 295 CONTENT_EXPORT extern const char kPrefetchArgumentGpu[]; |
| 296 CONTENT_EXPORT extern const char kPrefetchArgumentPpapi[]; |
| 297 CONTENT_EXPORT extern const char kPrefetchArgumentPpapiBroker[]; |
| 298 CONTENT_EXPORT extern const char kPrefetchArgumentOther[]; |
294 // This switch contains the device scale factor passed to certain processes | 299 // This switch contains the device scale factor passed to certain processes |
295 // like renderers, etc. | 300 // like renderers, etc. |
296 CONTENT_EXPORT extern const char kDeviceScaleFactor[]; | 301 CONTENT_EXPORT extern const char kDeviceScaleFactor[]; |
297 CONTENT_EXPORT extern const char kDisableLegacyIntermediateWindow[]; | 302 CONTENT_EXPORT extern const char kDisableLegacyIntermediateWindow[]; |
298 CONTENT_EXPORT extern const char kDisableWin32kRendererLockDown[]; | 303 CONTENT_EXPORT extern const char kDisableWin32kRendererLockDown[]; |
299 CONTENT_EXPORT extern const char kEnableWin32kLockDownMimeTypes[]; | 304 CONTENT_EXPORT extern const char kEnableWin32kLockDownMimeTypes[]; |
300 CONTENT_EXPORT extern const char kEnableAcceleratedVpxDecode[]; | 305 CONTENT_EXPORT extern const char kEnableAcceleratedVpxDecode[]; |
301 // Switch to pass the font cache shared memory handle to the renderer. | 306 // Switch to pass the font cache shared memory handle to the renderer. |
302 CONTENT_EXPORT extern const char kFontCacheSharedHandle[]; | 307 CONTENT_EXPORT extern const char kFontCacheSharedHandle[]; |
303 CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[]; | 308 CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[]; |
304 CONTENT_EXPORT extern const char kTraceExportEventsToETW[]; | 309 CONTENT_EXPORT extern const char kTraceExportEventsToETW[]; |
305 #endif | 310 #endif |
306 | 311 |
307 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 312 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
308 // alphabetical order, or in one of the ifdefs (also in order in each section). | 313 // alphabetical order, or in one of the ifdefs (also in order in each section). |
309 | 314 |
310 } // namespace switches | 315 } // namespace switches |
311 | 316 |
312 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 317 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |