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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 CONTENT_EXPORT extern const char kEnableGpuAsyncWorkerContext[]; | 124 CONTENT_EXPORT extern const char kEnableGpuAsyncWorkerContext[]; |
125 CONTENT_EXPORT extern const char kEnableGpuMemoryBufferCompositorResources[]; | 125 CONTENT_EXPORT extern const char kEnableGpuMemoryBufferCompositorResources[]; |
126 CONTENT_EXPORT extern const char kEnableGpuMemoryBufferVideoFrames[]; | 126 CONTENT_EXPORT extern const char kEnableGpuMemoryBufferVideoFrames[]; |
127 CONTENT_EXPORT extern const char kEnableGpuRasterization[]; | 127 CONTENT_EXPORT extern const char kEnableGpuRasterization[]; |
128 CONTENT_EXPORT extern const char kGpuRasterizationMSAASampleCount[]; | 128 CONTENT_EXPORT extern const char kGpuRasterizationMSAASampleCount[]; |
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 kEnableMemoryCoordinator[]; |
134 CONTENT_EXPORT extern const char kEnableNetworkInformation[]; | 135 CONTENT_EXPORT extern const char kEnableNetworkInformation[]; |
135 CONTENT_EXPORT extern const char kEnablePinch[]; | 136 CONTENT_EXPORT extern const char kEnablePinch[]; |
136 CONTENT_EXPORT extern const char kEnablePluginPlaceholderTesting[]; | 137 CONTENT_EXPORT extern const char kEnablePluginPlaceholderTesting[]; |
137 CONTENT_EXPORT extern const char kEnablePreciseMemoryInfo[]; | 138 CONTENT_EXPORT extern const char kEnablePreciseMemoryInfo[]; |
138 CONTENT_EXPORT extern const char kEnableRGBA4444Textures[]; | 139 CONTENT_EXPORT extern const char kEnableRGBA4444Textures[]; |
139 CONTENT_EXPORT extern const char kEnableSandboxLogging[]; | 140 CONTENT_EXPORT extern const char kEnableSandboxLogging[]; |
140 extern const char kEnableSkiaBenchmarking[]; | 141 extern const char kEnableSkiaBenchmarking[]; |
141 CONTENT_EXPORT extern const char kEnableSlimmingPaintV2[]; | 142 CONTENT_EXPORT extern const char kEnableSlimmingPaintV2[]; |
142 CONTENT_EXPORT extern const char kEnableSmoothScrolling[]; | 143 CONTENT_EXPORT extern const char kEnableSmoothScrolling[]; |
143 CONTENT_EXPORT extern const char kEnableSpatialNavigation[]; | 144 CONTENT_EXPORT extern const char kEnableSpatialNavigation[]; |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 extern const char kIpcDumpDirectory[]; | 315 extern const char kIpcDumpDirectory[]; |
315 extern const char kIpcFuzzerTestcase[]; | 316 extern const char kIpcFuzzerTestcase[]; |
316 #endif | 317 #endif |
317 | 318 |
318 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 319 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
319 // alphabetical order, or in one of the ifdefs (also in order in each section). | 320 // alphabetical order, or in one of the ifdefs (also in order in each section). |
320 | 321 |
321 } // namespace switches | 322 } // namespace switches |
322 | 323 |
323 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 324 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |