| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 CONTENT_EXPORT extern const char kEnableLowResTiling[]; | 129 CONTENT_EXPORT extern const char kEnableLowResTiling[]; |
| 130 CONTENT_EXPORT extern const char kEnableImageColorProfiles[]; | 130 CONTENT_EXPORT extern const char kEnableImageColorProfiles[]; |
| 131 CONTENT_EXPORT extern const char kEnableLCDText[]; | 131 CONTENT_EXPORT extern const char kEnableLCDText[]; |
| 132 CONTENT_EXPORT extern const char kEnableLogging[]; | 132 CONTENT_EXPORT extern const char kEnableLogging[]; |
| 133 extern const char kEnableMemoryBenchmarking[]; | 133 extern const char kEnableMemoryBenchmarking[]; |
| 134 CONTENT_EXPORT extern const char kEnableNetworkInformation[]; | 134 CONTENT_EXPORT extern const char kEnableNetworkInformation[]; |
| 135 CONTENT_EXPORT extern const char kDisableNv12DxgiVideo[]; | 135 CONTENT_EXPORT extern const char kDisableNv12DxgiVideo[]; |
| 136 CONTENT_EXPORT extern const char kEnablePinch[]; | 136 CONTENT_EXPORT extern const char kEnablePinch[]; |
| 137 CONTENT_EXPORT extern const char kEnablePluginPlaceholderTesting[]; | 137 CONTENT_EXPORT extern const char kEnablePluginPlaceholderTesting[]; |
| 138 CONTENT_EXPORT extern const char kEnablePreciseMemoryInfo[]; | 138 CONTENT_EXPORT extern const char kEnablePreciseMemoryInfo[]; |
| 139 CONTENT_EXPORT extern const char kEnableResizeLock[]; |
| 139 CONTENT_EXPORT extern const char kEnableRGBA4444Textures[]; | 140 CONTENT_EXPORT extern const char kEnableRGBA4444Textures[]; |
| 140 CONTENT_EXPORT extern const char kEnableSandboxLogging[]; | 141 CONTENT_EXPORT extern const char kEnableSandboxLogging[]; |
| 141 extern const char kEnableSkiaBenchmarking[]; | 142 extern const char kEnableSkiaBenchmarking[]; |
| 142 CONTENT_EXPORT extern const char kEnableSlimmingPaintV2[]; | 143 CONTENT_EXPORT extern const char kEnableSlimmingPaintV2[]; |
| 143 CONTENT_EXPORT extern const char kEnableSmoothScrolling[]; | 144 CONTENT_EXPORT extern const char kEnableSmoothScrolling[]; |
| 144 CONTENT_EXPORT extern const char kEnableSpatialNavigation[]; | 145 CONTENT_EXPORT extern const char kEnableSpatialNavigation[]; |
| 145 CONTENT_EXPORT extern const char kEnableStatsTable[]; | 146 CONTENT_EXPORT extern const char kEnableStatsTable[]; |
| 146 CONTENT_EXPORT extern const char kEnableStrictMixedContentChecking[]; | 147 CONTENT_EXPORT extern const char kEnableStrictMixedContentChecking[]; |
| 147 CONTENT_EXPORT extern const char kEnableStrictPowerfulFeatureRestrictions[]; | 148 CONTENT_EXPORT extern const char kEnableStrictPowerfulFeatureRestrictions[]; |
| 148 CONTENT_EXPORT extern const char kEnableTcpFastOpen[]; | 149 CONTENT_EXPORT extern const char kEnableTcpFastOpen[]; |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 extern const char kIpcDumpDirectory[]; | 316 extern const char kIpcDumpDirectory[]; |
| 316 extern const char kIpcFuzzerTestcase[]; | 317 extern const char kIpcFuzzerTestcase[]; |
| 317 #endif | 318 #endif |
| 318 | 319 |
| 319 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 320 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 320 // alphabetical order, or in one of the ifdefs (also in order in each section). | 321 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 321 | 322 |
| 322 } // namespace switches | 323 } // namespace switches |
| 323 | 324 |
| 324 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 325 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |