| 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 kEnableStatsTable[]; | 124 CONTENT_EXPORT extern const char kEnableStatsTable[]; |
| 125 CONTENT_EXPORT extern const char kEnableStrictMixedContentChecking[]; | 125 CONTENT_EXPORT extern const char kEnableStrictMixedContentChecking[]; |
| 126 CONTENT_EXPORT extern const char kEnableStrictPowerfulFeatureRestrictions[]; | 126 CONTENT_EXPORT extern const char kEnableStrictPowerfulFeatureRestrictions[]; |
| 127 CONTENT_EXPORT extern const char kEnableStrictSiteIsolation[]; | 127 CONTENT_EXPORT extern const char kEnableStrictSiteIsolation[]; |
| 128 CONTENT_EXPORT extern const char kEnableServiceWorkerSync[]; | 128 CONTENT_EXPORT extern const char kEnableServiceWorkerSync[]; |
| 129 CONTENT_EXPORT extern const char kEnableTcpFastOpen[]; | 129 CONTENT_EXPORT extern const char kEnableTcpFastOpen[]; |
| 130 CONTENT_EXPORT extern const char kEnableThreadedCompositing[]; | 130 CONTENT_EXPORT extern const char kEnableThreadedCompositing[]; |
| 131 CONTENT_EXPORT extern const char kEnableTracing[]; | 131 CONTENT_EXPORT extern const char kEnableTracing[]; |
| 132 CONTENT_EXPORT extern const char kEnableTracingOutput[]; | 132 CONTENT_EXPORT extern const char kEnableTracingOutput[]; |
| 133 CONTENT_EXPORT extern const char kEnableUserMediaScreenCapturing[]; | 133 CONTENT_EXPORT extern const char kEnableUserMediaScreenCapturing[]; |
| 134 extern const char kEnableV8ScriptStreaming[]; | |
| 135 CONTENT_EXPORT extern const char kEnableViewport[]; | 134 CONTENT_EXPORT extern const char kEnableViewport[]; |
| 136 CONTENT_EXPORT extern const char kEnableViewportMeta[]; | 135 CONTENT_EXPORT extern const char kEnableViewportMeta[]; |
| 137 CONTENT_EXPORT extern const char kMainFrameResizesAreOrientationChanges[]; | 136 CONTENT_EXPORT extern const char kMainFrameResizesAreOrientationChanges[]; |
| 138 CONTENT_EXPORT extern const char kEnableVtune[]; | 137 CONTENT_EXPORT extern const char kEnableVtune[]; |
| 139 CONTENT_EXPORT extern const char kEnableWebGLDraftExtensions[]; | 138 CONTENT_EXPORT extern const char kEnableWebGLDraftExtensions[]; |
| 140 CONTENT_EXPORT extern const char kEnableWebGLImageChromium[]; | 139 CONTENT_EXPORT extern const char kEnableWebGLImageChromium[]; |
| 141 CONTENT_EXPORT extern const char kEnableWebMIDI[]; | 140 CONTENT_EXPORT extern const char kEnableWebMIDI[]; |
| 142 CONTENT_EXPORT extern const char kEnableZeroCopy[]; | 141 CONTENT_EXPORT extern const char kEnableZeroCopy[]; |
| 143 CONTENT_EXPORT extern const char kExtraPluginDir[]; | 142 CONTENT_EXPORT extern const char kExtraPluginDir[]; |
| 144 CONTENT_EXPORT extern const char kForceDisplayList2dCanvas[]; | 143 CONTENT_EXPORT extern const char kForceDisplayList2dCanvas[]; |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 #if defined(ENABLE_PLUGINS) | 292 #if defined(ENABLE_PLUGINS) |
| 294 CONTENT_EXPORT extern const char kEnablePluginPowerSaver[]; | 293 CONTENT_EXPORT extern const char kEnablePluginPowerSaver[]; |
| 295 #endif | 294 #endif |
| 296 | 295 |
| 297 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 296 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 298 // alphabetical order, or in one of the ifdefs (also in order in each section). | 297 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 299 | 298 |
| 300 } // namespace switches | 299 } // namespace switches |
| 301 | 300 |
| 302 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 301 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |