| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 CONTENT_EXPORT extern const char kEnableHighResolutionTime[]; | 143 CONTENT_EXPORT extern const char kEnableHighResolutionTime[]; |
| 144 #endif | 144 #endif |
| 145 CONTENT_EXPORT extern const char kEnableHTMLImports[]; | 145 CONTENT_EXPORT extern const char kEnableHTMLImports[]; |
| 146 CONTENT_EXPORT extern const char kEnableInbandTextTracks[]; | 146 CONTENT_EXPORT extern const char kEnableInbandTextTracks[]; |
| 147 extern const char kEnableInputModeAttribute[]; | 147 extern const char kEnableInputModeAttribute[]; |
| 148 CONTENT_EXPORT extern const char kEnableLogging[]; | 148 CONTENT_EXPORT extern const char kEnableLogging[]; |
| 149 extern const char kEnableMemoryBenchmarking[]; | 149 extern const char kEnableMemoryBenchmarking[]; |
| 150 extern const char kEnableMonitorProfile[]; | 150 extern const char kEnableMonitorProfile[]; |
| 151 CONTENT_EXPORT extern const char kEnableOfflineCacheAccess[]; | 151 CONTENT_EXPORT extern const char kEnableOfflineCacheAccess[]; |
| 152 CONTENT_EXPORT extern const char kEnableOverlayFullscreenVideo[]; | 152 CONTENT_EXPORT extern const char kEnableOverlayFullscreenVideo[]; |
| 153 extern const char kEnableOverlayFullscreenVideoSubtitle[]; |
| 153 CONTENT_EXPORT extern const char kEnableOverlayScrollbars[]; | 154 CONTENT_EXPORT extern const char kEnableOverlayScrollbars[]; |
| 154 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[]; | 155 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[]; |
| 155 CONTENT_EXPORT extern const char kEnablePinch[]; | 156 CONTENT_EXPORT extern const char kEnablePinch[]; |
| 156 extern const char kEnablePreparsedJsCaching[]; | 157 extern const char kEnablePreparsedJsCaching[]; |
| 157 CONTENT_EXPORT extern const char kEnablePrivilegedWebGLExtensions[]; | 158 CONTENT_EXPORT extern const char kEnablePrivilegedWebGLExtensions[]; |
| 158 extern const char kEnablePruneGpuCommandBuffers[]; | 159 extern const char kEnablePruneGpuCommandBuffers[]; |
| 159 CONTENT_EXPORT extern const char kEnableRegionBasedColumns[]; | 160 CONTENT_EXPORT extern const char kEnableRegionBasedColumns[]; |
| 160 CONTENT_EXPORT extern const char kEnableRepaintAfterLayout[]; | 161 CONTENT_EXPORT extern const char kEnableRepaintAfterLayout[]; |
| 161 CONTENT_EXPORT extern const char kEnableSandboxLogging[]; | 162 CONTENT_EXPORT extern const char kEnableSandboxLogging[]; |
| 162 extern const char kEnableSkiaBenchmarking[]; | 163 extern const char kEnableSkiaBenchmarking[]; |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 #if defined(OS_POSIX) | 315 #if defined(OS_POSIX) |
| 315 extern const char kChildCleanExit[]; | 316 extern const char kChildCleanExit[]; |
| 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 |