Chromium Code Reviews| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 137 CONTENT_EXPORT extern const char kDisableLegacyIntermediateWindow[]; | 137 CONTENT_EXPORT extern const char kDisableLegacyIntermediateWindow[]; |
| 138 CONTENT_EXPORT extern const char kEnableDirectWrite[]; | 138 CONTENT_EXPORT extern const char kEnableDirectWrite[]; |
| 139 CONTENT_EXPORT extern const char kEnableHighResolutionTime[]; | 139 CONTENT_EXPORT extern const char kEnableHighResolutionTime[]; |
| 140 #endif | 140 #endif |
| 141 CONTENT_EXPORT extern const char kEnableImplSidePainting[]; | 141 CONTENT_EXPORT extern const char kEnableImplSidePainting[]; |
| 142 CONTENT_EXPORT extern const char kEnableInbandTextTracks[]; | 142 CONTENT_EXPORT extern const char kEnableInbandTextTracks[]; |
| 143 CONTENT_EXPORT extern const char kEnableLCDText[]; | 143 CONTENT_EXPORT extern const char kEnableLCDText[]; |
| 144 CONTENT_EXPORT extern const char kEnableLogging[]; | 144 CONTENT_EXPORT extern const char kEnableLogging[]; |
| 145 CONTENT_EXPORT extern const char kEnableMapImage[]; | 145 CONTENT_EXPORT extern const char kEnableMapImage[]; |
| 146 extern const char kEnableMemoryBenchmarking[]; | 146 extern const char kEnableMemoryBenchmarking[]; |
| 147 CONTENT_EXPORT extern const char kEnableMemoryInfo[]; | |
|
jam
2014/04/10 14:39:45
since this is for workers only, you should make it
Pan
2014/04/11 01:52:13
thanks, done.
| |
| 147 extern const char kEnableMonitorProfile[]; | 148 extern const char kEnableMonitorProfile[]; |
| 148 CONTENT_EXPORT extern const char kEnableOfflineCacheAccess[]; | 149 CONTENT_EXPORT extern const char kEnableOfflineCacheAccess[]; |
| 149 CONTENT_EXPORT extern const char kEnableOverlayFullscreenVideo[]; | 150 CONTENT_EXPORT extern const char kEnableOverlayFullscreenVideo[]; |
| 150 CONTENT_EXPORT extern const char kDisableOverlayFullscreenVideoSubtitle[]; | 151 CONTENT_EXPORT extern const char kDisableOverlayFullscreenVideoSubtitle[]; |
| 151 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[]; | 152 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[]; |
| 152 CONTENT_EXPORT extern const char kEnablePinch[]; | 153 CONTENT_EXPORT extern const char kEnablePinch[]; |
| 153 extern const char kEnablePreparsedJsCaching[]; | 154 extern const char kEnablePreparsedJsCaching[]; |
| 154 CONTENT_EXPORT extern const char kEnablePrivilegedWebGLExtensions[]; | 155 CONTENT_EXPORT extern const char kEnablePrivilegedWebGLExtensions[]; |
| 155 CONTENT_EXPORT extern const char kEnableRegionBasedColumns[]; | 156 CONTENT_EXPORT extern const char kEnableRegionBasedColumns[]; |
| 156 CONTENT_EXPORT extern const char kEnableRepaintAfterLayout[]; | 157 CONTENT_EXPORT extern const char kEnableRepaintAfterLayout[]; |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 305 extern const char kEnableCarbonInterposing[]; | 306 extern const char kEnableCarbonInterposing[]; |
| 306 extern const char kDisableCoreAnimationPlugins[]; | 307 extern const char kDisableCoreAnimationPlugins[]; |
| 307 #endif | 308 #endif |
| 308 | 309 |
| 309 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 310 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 310 // alphabetical order, or in one of the ifdefs (also in order in each section). | 311 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 311 | 312 |
| 312 } // namespace switches | 313 } // namespace switches |
| 313 | 314 |
| 314 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 315 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |