| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 CONTENT_EXPORT extern const char kEnableSandboxLogging[]; | 165 CONTENT_EXPORT extern const char kEnableSandboxLogging[]; |
| 166 extern const char kEnableSkiaBenchmarking[]; | 166 extern const char kEnableSkiaBenchmarking[]; |
| 167 CONTENT_EXPORT extern const char kEnableSmoothScrolling[]; | 167 CONTENT_EXPORT extern const char kEnableSmoothScrolling[]; |
| 168 CONTENT_EXPORT extern const char kEnableSoftwareCompositing[]; | 168 CONTENT_EXPORT extern const char kEnableSoftwareCompositing[]; |
| 169 CONTENT_EXPORT extern const char kEnableSpatialNavigation[]; | 169 CONTENT_EXPORT extern const char kEnableSpatialNavigation[]; |
| 170 CONTENT_EXPORT extern const char kEnableSpeechSynthesis[]; | 170 CONTENT_EXPORT extern const char kEnableSpeechSynthesis[]; |
| 171 CONTENT_EXPORT extern const char kEnableStatsTable[]; | 171 CONTENT_EXPORT extern const char kEnableStatsTable[]; |
| 172 extern const char kEnableStrictSiteIsolation[]; | 172 extern const char kEnableStrictSiteIsolation[]; |
| 173 CONTENT_EXPORT extern const char kEnableServiceWorker[]; | 173 CONTENT_EXPORT extern const char kEnableServiceWorker[]; |
| 174 CONTENT_EXPORT extern const char kEnableTcpFastOpen[]; | 174 CONTENT_EXPORT extern const char kEnableTcpFastOpen[]; |
| 175 CONTENT_EXPORT extern const char kEnableTextServicesFramework[]; | |
| 176 CONTENT_EXPORT extern const char kEnableThreadedCompositing[]; | 175 CONTENT_EXPORT extern const char kEnableThreadedCompositing[]; |
| 177 CONTENT_EXPORT extern const char kEnableUniversalAcceleratedOverflowScroll[]; | 176 CONTENT_EXPORT extern const char kEnableUniversalAcceleratedOverflowScroll[]; |
| 178 CONTENT_EXPORT extern const char kEnableUserMediaScreenCapturing[]; | 177 CONTENT_EXPORT extern const char kEnableUserMediaScreenCapturing[]; |
| 179 CONTENT_EXPORT extern const char kEnableViewport[]; | 178 CONTENT_EXPORT extern const char kEnableViewport[]; |
| 180 CONTENT_EXPORT extern const char kEnableViewportMeta[]; | 179 CONTENT_EXPORT extern const char kEnableViewportMeta[]; |
| 181 CONTENT_EXPORT extern const char kMainFrameResizesAreOrientationChanges[]; | 180 CONTENT_EXPORT extern const char kMainFrameResizesAreOrientationChanges[]; |
| 182 extern const char kEnableVisualWordMovement[]; | 181 extern const char kEnableVisualWordMovement[]; |
| 183 CONTENT_EXPORT extern const char kEnableVtune[]; | 182 CONTENT_EXPORT extern const char kEnableVtune[]; |
| 184 // FIXME: Remove this once Web Animations CSS is enabled by default in Blink. | 183 // FIXME: Remove this once Web Animations CSS is enabled by default in Blink. |
| 185 extern const char kEnableWebAnimationsCSS[]; | 184 extern const char kEnableWebAnimationsCSS[]; |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 #if defined(OS_POSIX) | 317 #if defined(OS_POSIX) |
| 319 extern const char kChildCleanExit[]; | 318 extern const char kChildCleanExit[]; |
| 320 #endif | 319 #endif |
| 321 | 320 |
| 322 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 321 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 323 // alphabetical order, or in one of the ifdefs (also in order in each section). | 322 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 324 | 323 |
| 325 } // namespace switches | 324 } // namespace switches |
| 326 | 325 |
| 327 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 326 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |