| 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 extern const char kEnableSpatialNavigation[]; | 147 extern const char kEnableSpatialNavigation[]; |
| 148 CONTENT_EXPORT extern const char kEnableSpeechSynthesis[]; | 148 CONTENT_EXPORT extern const char kEnableSpeechSynthesis[]; |
| 149 extern const char kEnableSSLCachedInfo[]; | 149 extern const char kEnableSSLCachedInfo[]; |
| 150 CONTENT_EXPORT extern const char kEnableStatsTable[]; | 150 CONTENT_EXPORT extern const char kEnableStatsTable[]; |
| 151 extern const char kEnableStrictSiteIsolation[]; | 151 extern const char kEnableStrictSiteIsolation[]; |
| 152 CONTENT_EXPORT extern const char kEnableTcpFastOpen[]; | 152 CONTENT_EXPORT extern const char kEnableTcpFastOpen[]; |
| 153 CONTENT_EXPORT extern const char kEnableTextServicesFramework[]; | 153 CONTENT_EXPORT extern const char kEnableTextServicesFramework[]; |
| 154 CONTENT_EXPORT extern const char kEnableThreadedCompositing[]; | 154 CONTENT_EXPORT extern const char kEnableThreadedCompositing[]; |
| 155 extern const char kEnableUserMediaScreenCapturing[]; | 155 extern const char kEnableUserMediaScreenCapturing[]; |
| 156 extern const char kEnableViewport[]; | 156 extern const char kEnableViewport[]; |
| 157 extern const char kEnableVirtualGLContexts[]; | |
| 158 extern const char kEnableVisualWordMovement[]; | 157 extern const char kEnableVisualWordMovement[]; |
| 159 CONTENT_EXPORT extern const char kEnableVtune[]; | 158 CONTENT_EXPORT extern const char kEnableVtune[]; |
| 160 extern const char kEnableWebAnimationsCSS[]; | 159 extern const char kEnableWebAnimationsCSS[]; |
| 161 extern const char kEnableWebAnimationsSVG[]; | 160 extern const char kEnableWebAnimationsSVG[]; |
| 162 CONTENT_EXPORT extern const char kEnableWebGLDraftExtensions[]; | 161 CONTENT_EXPORT extern const char kEnableWebGLDraftExtensions[]; |
| 163 extern const char kEnableWebMIDI[]; | 162 extern const char kEnableWebMIDI[]; |
| 164 extern const char kEnableWebRtcTcpServerSocket[]; | 163 extern const char kEnableWebRtcTcpServerSocket[]; |
| 165 CONTENT_EXPORT extern const char kExtraPluginDir[]; | 164 CONTENT_EXPORT extern const char kExtraPluginDir[]; |
| 166 CONTENT_EXPORT extern const char kForceCompositingMode[]; | 165 CONTENT_EXPORT extern const char kForceCompositingMode[]; |
| 167 extern const char kForceFieldTrials[]; | 166 extern const char kForceFieldTrials[]; |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 #if defined(USE_AURA) | 284 #if defined(USE_AURA) |
| 286 CONTENT_EXPORT extern const char kTestCompositor[]; | 285 CONTENT_EXPORT extern const char kTestCompositor[]; |
| 287 #endif | 286 #endif |
| 288 | 287 |
| 289 // 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 |
| 290 // 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). |
| 291 | 290 |
| 292 } // namespace switches | 291 } // namespace switches |
| 293 | 292 |
| 294 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 293 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |