| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 extern const char kEnableMemoryBenchmarking[]; | 117 extern const char kEnableMemoryBenchmarking[]; |
| 118 CONTENT_EXPORT extern const char kEnableNetworkInformation[]; | 118 CONTENT_EXPORT extern const char kEnableNetworkInformation[]; |
| 119 CONTENT_EXPORT extern const char kEnableOneCopy[]; | 119 CONTENT_EXPORT extern const char kEnableOneCopy[]; |
| 120 CONTENT_EXPORT extern const char kEnableOverlayFullscreenVideo[]; | 120 CONTENT_EXPORT extern const char kEnableOverlayFullscreenVideo[]; |
| 121 CONTENT_EXPORT extern const char kDisableOverlayFullscreenVideoSubtitle[]; | 121 CONTENT_EXPORT extern const char kDisableOverlayFullscreenVideoSubtitle[]; |
| 122 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[]; | 122 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[]; |
| 123 CONTENT_EXPORT extern const char kEnablePinch[]; | 123 CONTENT_EXPORT extern const char kEnablePinch[]; |
| 124 CONTENT_EXPORT extern const char kEnablePreciseMemoryInfo[]; | 124 CONTENT_EXPORT extern const char kEnablePreciseMemoryInfo[]; |
| 125 extern const char kEnablePreparsedJsCaching[]; | 125 extern const char kEnablePreparsedJsCaching[]; |
| 126 CONTENT_EXPORT extern const char kEnableRegionBasedColumns[]; | 126 CONTENT_EXPORT extern const char kEnableRegionBasedColumns[]; |
| 127 CONTENT_EXPORT extern const char kEnableRendererMojoChannel[]; |
| 127 CONTENT_EXPORT extern const char kEnableSandboxLogging[]; | 128 CONTENT_EXPORT extern const char kEnableSandboxLogging[]; |
| 128 extern const char kEnableSeccompFilterSandbox[]; | 129 extern const char kEnableSeccompFilterSandbox[]; |
| 129 extern const char kEnableSkiaBenchmarking[]; | 130 extern const char kEnableSkiaBenchmarking[]; |
| 130 CONTENT_EXPORT extern const char kEnableSmoothScrolling[]; | 131 CONTENT_EXPORT extern const char kEnableSmoothScrolling[]; |
| 131 CONTENT_EXPORT extern const char kEnableSpatialNavigation[]; | 132 CONTENT_EXPORT extern const char kEnableSpatialNavigation[]; |
| 132 CONTENT_EXPORT extern const char kEnableStatsTable[]; | 133 CONTENT_EXPORT extern const char kEnableStatsTable[]; |
| 133 extern const char kEnableStrictSiteIsolation[]; | 134 extern const char kEnableStrictSiteIsolation[]; |
| 134 CONTENT_EXPORT extern const char kEnableServiceWorkerSync[]; | 135 CONTENT_EXPORT extern const char kEnableServiceWorkerSync[]; |
| 135 CONTENT_EXPORT extern const char kEnableTargetedStyleRecalc[]; | 136 CONTENT_EXPORT extern const char kEnableTargetedStyleRecalc[]; |
| 136 CONTENT_EXPORT extern const char kEnableTcpFastOpen[]; | 137 CONTENT_EXPORT extern const char kEnableTcpFastOpen[]; |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 // mitigation. | 284 // mitigation. |
| 284 CONTENT_EXPORT extern const char kEnableWin32kRendererLockDown[]; | 285 CONTENT_EXPORT extern const char kEnableWin32kRendererLockDown[]; |
| 285 #endif | 286 #endif |
| 286 | 287 |
| 287 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 288 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 288 // alphabetical order, or in one of the ifdefs (also in order in each section). | 289 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 289 | 290 |
| 290 } // namespace switches | 291 } // namespace switches |
| 291 | 292 |
| 292 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 293 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |