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 CONTENT_EXPORT extern const char kRendererProcess[]; | 228 CONTENT_EXPORT extern const char kRendererProcess[]; |
229 CONTENT_EXPORT extern const char kRendererProcessLimit[]; | 229 CONTENT_EXPORT extern const char kRendererProcessLimit[]; |
230 CONTENT_EXPORT extern const char kRendererStartupDialog[]; | 230 CONTENT_EXPORT extern const char kRendererStartupDialog[]; |
231 extern const char kSandboxIPCProcess[]; | 231 extern const char kSandboxIPCProcess[]; |
232 CONTENT_EXPORT extern const char kScrollEndEffect[]; | 232 CONTENT_EXPORT extern const char kScrollEndEffect[]; |
233 extern const char kShowPaintRects[]; | 233 extern const char kShowPaintRects[]; |
234 CONTENT_EXPORT extern const char kSimulateTouchScreenWithMouse[]; | 234 CONTENT_EXPORT extern const char kSimulateTouchScreenWithMouse[]; |
235 CONTENT_EXPORT extern const char kSingleProcess[]; | 235 CONTENT_EXPORT extern const char kSingleProcess[]; |
236 CONTENT_EXPORT extern const char kSitePerProcess[]; | 236 CONTENT_EXPORT extern const char kSitePerProcess[]; |
237 CONTENT_EXPORT extern const char kSkipGpuDataLoading[]; | 237 CONTENT_EXPORT extern const char kSkipGpuDataLoading[]; |
238 extern const char kSpeechRecognitionWebserviceKey[]; | |
239 CONTENT_EXPORT extern const char kStartFullscreen[]; | 238 CONTENT_EXPORT extern const char kStartFullscreen[]; |
240 CONTENT_EXPORT extern const char kStatsCollectionController[]; | 239 CONTENT_EXPORT extern const char kStatsCollectionController[]; |
241 CONTENT_EXPORT extern const char kTabCaptureDownscaleQuality[]; | 240 CONTENT_EXPORT extern const char kTabCaptureDownscaleQuality[]; |
242 CONTENT_EXPORT extern const char kTabCaptureUpscaleQuality[]; | 241 CONTENT_EXPORT extern const char kTabCaptureUpscaleQuality[]; |
243 CONTENT_EXPORT extern const char kTestingFixedHttpPort[]; | 242 CONTENT_EXPORT extern const char kTestingFixedHttpPort[]; |
244 CONTENT_EXPORT extern const char kTestingFixedHttpsPort[]; | 243 CONTENT_EXPORT extern const char kTestingFixedHttpsPort[]; |
245 CONTENT_EXPORT extern const char kTestSandbox[]; | 244 CONTENT_EXPORT extern const char kTestSandbox[]; |
246 CONTENT_EXPORT extern const char kTouchAckTimeoutDelayMs[]; | 245 CONTENT_EXPORT extern const char kTouchAckTimeoutDelayMs[]; |
247 CONTENT_EXPORT extern const char kTouchScrollingMode[]; | 246 CONTENT_EXPORT extern const char kTouchScrollingMode[]; |
248 CONTENT_EXPORT extern const char kTouchScrollingModeAbsorbTouchmove[]; | 247 CONTENT_EXPORT extern const char kTouchScrollingModeAbsorbTouchmove[]; |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
313 #if defined(OS_POSIX) | 312 #if defined(OS_POSIX) |
314 extern const char kChildCleanExit[]; | 313 extern const char kChildCleanExit[]; |
315 #endif | 314 #endif |
316 | 315 |
317 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 316 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
318 // alphabetical order, or in one of the ifdefs (also in order in each section). | 317 // alphabetical order, or in one of the ifdefs (also in order in each section). |
319 | 318 |
320 } // namespace switches | 319 } // namespace switches |
321 | 320 |
322 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 321 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |