| 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 extern const char kShowPaintRects[]; | 228 extern const char kShowPaintRects[]; |
| 229 CONTENT_EXPORT extern const char kSingleProcess[]; | 229 CONTENT_EXPORT extern const char kSingleProcess[]; |
| 230 CONTENT_EXPORT extern const char kSitePerProcess[]; | 230 CONTENT_EXPORT extern const char kSitePerProcess[]; |
| 231 CONTENT_EXPORT extern const char kSkipGpuDataLoading[]; | 231 CONTENT_EXPORT extern const char kSkipGpuDataLoading[]; |
| 232 CONTENT_EXPORT extern const char kStartFullscreen[]; | 232 CONTENT_EXPORT extern const char kStartFullscreen[]; |
| 233 CONTENT_EXPORT extern const char kStatsCollectionController[]; | 233 CONTENT_EXPORT extern const char kStatsCollectionController[]; |
| 234 CONTENT_EXPORT extern const char kTabCaptureDownscaleQuality[]; | 234 CONTENT_EXPORT extern const char kTabCaptureDownscaleQuality[]; |
| 235 CONTENT_EXPORT extern const char kTabCaptureUpscaleQuality[]; | 235 CONTENT_EXPORT extern const char kTabCaptureUpscaleQuality[]; |
| 236 CONTENT_EXPORT extern const char kTestingFixedHttpPort[]; | 236 CONTENT_EXPORT extern const char kTestingFixedHttpPort[]; |
| 237 CONTENT_EXPORT extern const char kTestingFixedHttpsPort[]; | 237 CONTENT_EXPORT extern const char kTestingFixedHttpsPort[]; |
| 238 CONTENT_EXPORT extern const char kTestSandbox[]; | |
| 239 CONTENT_EXPORT extern const char kTestType[]; | 238 CONTENT_EXPORT extern const char kTestType[]; |
| 240 CONTENT_EXPORT extern const char kTouchScrollingMode[]; | 239 CONTENT_EXPORT extern const char kTouchScrollingMode[]; |
| 241 CONTENT_EXPORT extern const char kTouchScrollingModeAsyncTouchmove[]; | 240 CONTENT_EXPORT extern const char kTouchScrollingModeAsyncTouchmove[]; |
| 242 CONTENT_EXPORT extern const char kTouchScrollingModeSyncTouchmove[]; | 241 CONTENT_EXPORT extern const char kTouchScrollingModeSyncTouchmove[]; |
| 243 CONTENT_EXPORT extern const char kTouchScrollingModeTouchcancel[]; | 242 CONTENT_EXPORT extern const char kTouchScrollingModeTouchcancel[]; |
| 244 CONTENT_EXPORT extern const char kTraceShutdown[]; | 243 CONTENT_EXPORT extern const char kTraceShutdown[]; |
| 245 extern const char kTraceShutdownFile[]; | 244 extern const char kTraceShutdownFile[]; |
| 246 extern const char kTraceStartup[]; | 245 extern const char kTraceStartup[]; |
| 247 extern const char kTraceStartupDuration[]; | 246 extern const char kTraceStartupDuration[]; |
| 248 extern const char kTraceStartupFile[]; | 247 extern const char kTraceStartupFile[]; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 extern const char kEnableCarbonInterposing[]; | 295 extern const char kEnableCarbonInterposing[]; |
| 297 extern const char kDisableCoreAnimationPlugins[]; | 296 extern const char kDisableCoreAnimationPlugins[]; |
| 298 #endif | 297 #endif |
| 299 | 298 |
| 300 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 299 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 301 // alphabetical order, or in one of the ifdefs (also in order in each section). | 300 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 302 | 301 |
| 303 } // namespace switches | 302 } // namespace switches |
| 304 | 303 |
| 305 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 304 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |