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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; | 219 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; |
220 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; | 220 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; |
221 CONTENT_EXPORT extern const char kRendererAssertTest[]; | 221 CONTENT_EXPORT extern const char kRendererAssertTest[]; |
222 extern const char kRendererCmdPrefix[]; | 222 extern const char kRendererCmdPrefix[]; |
223 CONTENT_EXPORT extern const char kRendererProcess[]; | 223 CONTENT_EXPORT extern const char kRendererProcess[]; |
224 CONTENT_EXPORT extern const char kRendererProcessLimit[]; | 224 CONTENT_EXPORT extern const char kRendererProcessLimit[]; |
225 CONTENT_EXPORT extern const char kRendererStartupDialog[]; | 225 CONTENT_EXPORT extern const char kRendererStartupDialog[]; |
226 extern const char kSandboxIPCProcess[]; | 226 extern const char kSandboxIPCProcess[]; |
227 CONTENT_EXPORT extern const char kScrollEndEffect[]; | 227 CONTENT_EXPORT extern const char kScrollEndEffect[]; |
228 extern const char kShowPaintRects[]; | 228 extern const char kShowPaintRects[]; |
| 229 CONTENT_EXPORT extern const char kSimulateTouchScreenWithMouse[]; |
229 CONTENT_EXPORT extern const char kSingleProcess[]; | 230 CONTENT_EXPORT extern const char kSingleProcess[]; |
230 CONTENT_EXPORT extern const char kSitePerProcess[]; | 231 CONTENT_EXPORT extern const char kSitePerProcess[]; |
231 CONTENT_EXPORT extern const char kSkipGpuDataLoading[]; | 232 CONTENT_EXPORT extern const char kSkipGpuDataLoading[]; |
232 CONTENT_EXPORT extern const char kStartFullscreen[]; | 233 CONTENT_EXPORT extern const char kStartFullscreen[]; |
233 CONTENT_EXPORT extern const char kStatsCollectionController[]; | 234 CONTENT_EXPORT extern const char kStatsCollectionController[]; |
234 CONTENT_EXPORT extern const char kTabCaptureDownscaleQuality[]; | 235 CONTENT_EXPORT extern const char kTabCaptureDownscaleQuality[]; |
235 CONTENT_EXPORT extern const char kTabCaptureUpscaleQuality[]; | 236 CONTENT_EXPORT extern const char kTabCaptureUpscaleQuality[]; |
236 CONTENT_EXPORT extern const char kTestingFixedHttpPort[]; | 237 CONTENT_EXPORT extern const char kTestingFixedHttpPort[]; |
237 CONTENT_EXPORT extern const char kTestingFixedHttpsPort[]; | 238 CONTENT_EXPORT extern const char kTestingFixedHttpsPort[]; |
238 CONTENT_EXPORT extern const char kTestSandbox[]; | 239 CONTENT_EXPORT extern const char kTestSandbox[]; |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 extern const char kEnableCarbonInterposing[]; | 299 extern const char kEnableCarbonInterposing[]; |
299 extern const char kDisableCoreAnimationPlugins[]; | 300 extern const char kDisableCoreAnimationPlugins[]; |
300 #endif | 301 #endif |
301 | 302 |
302 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 303 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
303 // alphabetical order, or in one of the ifdefs (also in order in each section). | 304 // alphabetical order, or in one of the ifdefs (also in order in each section). |
304 | 305 |
305 } // namespace switches | 306 } // namespace switches |
306 | 307 |
307 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 308 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |