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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; | 202 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; |
203 extern const char kPpapiStartupDialog[]; | 203 extern const char kPpapiStartupDialog[]; |
204 CONTENT_EXPORT extern const char kProcessPerSite[]; | 204 CONTENT_EXPORT extern const char kProcessPerSite[]; |
205 CONTENT_EXPORT extern const char kProcessPerTab[]; | 205 CONTENT_EXPORT extern const char kProcessPerTab[]; |
206 CONTENT_EXPORT extern const char kProcessType[]; | 206 CONTENT_EXPORT extern const char kProcessType[]; |
207 extern const char kReduceGpuSandbox[]; | 207 extern const char kReduceGpuSandbox[]; |
208 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; | 208 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; |
209 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; | 209 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; |
210 CONTENT_EXPORT extern const char kRendererAssertTest[]; | 210 CONTENT_EXPORT extern const char kRendererAssertTest[]; |
211 extern const char kRendererCmdPrefix[]; | 211 extern const char kRendererCmdPrefix[]; |
| 212 extern const char kChildCmdPrefix[]; |
212 CONTENT_EXPORT extern const char kRendererProcess[]; | 213 CONTENT_EXPORT extern const char kRendererProcess[]; |
213 extern const char kRendererProcessLimit[]; | 214 extern const char kRendererProcessLimit[]; |
214 extern const char kRendererStartupDialog[]; | 215 extern const char kRendererStartupDialog[]; |
215 CONTENT_EXPORT extern const char kScrollEndEffect[]; | 216 CONTENT_EXPORT extern const char kScrollEndEffect[]; |
216 extern const char kShowPaintRects[]; | 217 extern const char kShowPaintRects[]; |
217 CONTENT_EXPORT extern const char kSimulateTouchScreenWithMouse[]; | 218 CONTENT_EXPORT extern const char kSimulateTouchScreenWithMouse[]; |
218 CONTENT_EXPORT extern const char kSingleProcess[]; | 219 CONTENT_EXPORT extern const char kSingleProcess[]; |
219 CONTENT_EXPORT extern const char kSitePerProcess[]; | 220 CONTENT_EXPORT extern const char kSitePerProcess[]; |
220 CONTENT_EXPORT extern const char kSkipGpuDataLoading[]; | 221 CONTENT_EXPORT extern const char kSkipGpuDataLoading[]; |
221 extern const char kSpeechRecognitionWebserviceKey[]; | 222 extern const char kSpeechRecognitionWebserviceKey[]; |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 #if defined(USE_AURA) | 285 #if defined(USE_AURA) |
285 CONTENT_EXPORT extern const char kTestCompositor[]; | 286 CONTENT_EXPORT extern const char kTestCompositor[]; |
286 #endif | 287 #endif |
287 | 288 |
288 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 289 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
289 // alphabetical order, or in one of the ifdefs (also in order in each section). | 290 // alphabetical order, or in one of the ifdefs (also in order in each section). |
290 | 291 |
291 } // namespace switches | 292 } // namespace switches |
292 | 293 |
293 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 294 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |