Chromium Code Reviews| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 112 CONTENT_EXPORT extern const char kEnableEncryptedMedia[]; | 112 CONTENT_EXPORT extern const char kEnableEncryptedMedia[]; |
| 113 CONTENT_EXPORT extern const char kEnableExperimentalCanvasFeatures[]; | 113 CONTENT_EXPORT extern const char kEnableExperimentalCanvasFeatures[]; |
| 114 CONTENT_EXPORT extern const char kEnableExperimentalWebPlatformFeatures[]; | 114 CONTENT_EXPORT extern const char kEnableExperimentalWebPlatformFeatures[]; |
| 115 CONTENT_EXPORT extern const char kEnableFastTextAutosizing[]; | 115 CONTENT_EXPORT extern const char kEnableFastTextAutosizing[]; |
| 116 CONTENT_EXPORT extern const char kEnableFileCookies[]; | 116 CONTENT_EXPORT extern const char kEnableFileCookies[]; |
| 117 CONTENT_EXPORT extern const char kEnableGestureTapHighlight[]; | 117 CONTENT_EXPORT extern const char kEnableGestureTapHighlight[]; |
| 118 extern const char kEnableGpuClientTracing[]; | 118 extern const char kEnableGpuClientTracing[]; |
| 119 CONTENT_EXPORT extern const char kEnableGpuRasterization[]; | 119 CONTENT_EXPORT extern const char kEnableGpuRasterization[]; |
| 120 CONTENT_EXPORT extern const char kEnableLowResTiling[]; | 120 CONTENT_EXPORT extern const char kEnableLowResTiling[]; |
| 121 CONTENT_EXPORT extern const char kEnableHighDpiCompositingForFixedPosition[]; | 121 CONTENT_EXPORT extern const char kEnableHighDpiCompositingForFixedPosition[]; |
| 122 #if defined(OS_WIN) | 122 #if defined(OS_WIN) |
|
sky
2014/06/03 20:11:43
Move this section to the bottom of the file with t
ananta
2014/06/03 20:43:24
Done.
| |
| 123 // This switch contains the device scale factor passed to certain processes | |
| 124 // like renderers, etc. | |
| 125 CONTENT_EXPORT extern const char kDeviceScaleFactor[]; | |
| 123 CONTENT_EXPORT extern const char kDisableLegacyIntermediateWindow[]; | 126 CONTENT_EXPORT extern const char kDisableLegacyIntermediateWindow[]; |
| 124 CONTENT_EXPORT extern const char kEnableDirectWrite[]; | 127 CONTENT_EXPORT extern const char kEnableDirectWrite[]; |
| 128 CONTENT_EXPORT extern const char kEnableHighResolutionTime[]; | |
| 125 // This switch will be removed when we enable the win32K lockdown process | 129 // This switch will be removed when we enable the win32K lockdown process |
| 126 // mitigation. | 130 // mitigation. |
| 127 CONTENT_EXPORT extern const char kEnableWin32kRendererLockDown[]; | 131 CONTENT_EXPORT extern const char kEnableWin32kRendererLockDown[]; |
| 128 CONTENT_EXPORT extern const char kEnableHighResolutionTime[]; | |
| 129 #endif | 132 #endif |
| 130 CONTENT_EXPORT extern const char kEnableImplSidePainting[]; | 133 CONTENT_EXPORT extern const char kEnableImplSidePainting[]; |
| 131 CONTENT_EXPORT extern const char kEnableInbandTextTracks[]; | 134 CONTENT_EXPORT extern const char kEnableInbandTextTracks[]; |
| 132 CONTENT_EXPORT extern const char kEnableLCDText[]; | 135 CONTENT_EXPORT extern const char kEnableLCDText[]; |
| 133 CONTENT_EXPORT extern const char kEnableLogging[]; | 136 CONTENT_EXPORT extern const char kEnableLogging[]; |
| 134 extern const char kEnableMemoryBenchmarking[]; | 137 extern const char kEnableMemoryBenchmarking[]; |
| 135 CONTENT_EXPORT extern const char kEnableOneCopy[]; | 138 CONTENT_EXPORT extern const char kEnableOneCopy[]; |
| 136 CONTENT_EXPORT extern const char kEnableOverlayFullscreenVideo[]; | 139 CONTENT_EXPORT extern const char kEnableOverlayFullscreenVideo[]; |
| 137 CONTENT_EXPORT extern const char kDisableOverlayFullscreenVideoSubtitle[]; | 140 CONTENT_EXPORT extern const char kDisableOverlayFullscreenVideoSubtitle[]; |
| 138 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[]; | 141 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[]; |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 289 extern const char kEnableCarbonInterposing[]; | 292 extern const char kEnableCarbonInterposing[]; |
| 290 extern const char kDisableCoreAnimationPlugins[]; | 293 extern const char kDisableCoreAnimationPlugins[]; |
| 291 #endif | 294 #endif |
| 292 | 295 |
| 293 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 296 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 294 // alphabetical order, or in one of the ifdefs (also in order in each section). | 297 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 295 | 298 |
| 296 } // namespace switches | 299 } // namespace switches |
| 297 | 300 |
| 298 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 301 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |