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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; | 221 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; |
222 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; | 222 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; |
223 CONTENT_EXPORT extern const char kRendererClientId[]; | 223 CONTENT_EXPORT extern const char kRendererClientId[]; |
224 extern const char kRendererCmdPrefix[]; | 224 extern const char kRendererCmdPrefix[]; |
225 CONTENT_EXPORT extern const char kRendererProcess[]; | 225 CONTENT_EXPORT extern const char kRendererProcess[]; |
226 CONTENT_EXPORT extern const char kRendererProcessLimit[]; | 226 CONTENT_EXPORT extern const char kRendererProcessLimit[]; |
227 CONTENT_EXPORT extern const char kRendererStartupDialog[]; | 227 CONTENT_EXPORT extern const char kRendererStartupDialog[]; |
228 CONTENT_EXPORT extern const char kRootLayerScrolls[]; | 228 CONTENT_EXPORT extern const char kRootLayerScrolls[]; |
229 extern const char kSandboxIPCProcess[]; | 229 extern const char kSandboxIPCProcess[]; |
230 CONTENT_EXPORT extern const char kScrollEndEffect[]; | 230 CONTENT_EXPORT extern const char kScrollEndEffect[]; |
| 231 CONTENT_EXPORT extern const char kSharedFiles[]; |
231 extern const char kShowPaintRects[]; | 232 extern const char kShowPaintRects[]; |
232 CONTENT_EXPORT extern const char kSingleProcess[]; | 233 CONTENT_EXPORT extern const char kSingleProcess[]; |
233 CONTENT_EXPORT extern const char kSitePerProcess[]; | 234 CONTENT_EXPORT extern const char kSitePerProcess[]; |
234 CONTENT_EXPORT extern const char kSkipGpuDataLoading[]; | 235 CONTENT_EXPORT extern const char kSkipGpuDataLoading[]; |
235 extern const char kSkipReencodingOnSKPCapture[]; | 236 extern const char kSkipReencodingOnSKPCapture[]; |
236 CONTENT_EXPORT extern const char kStartFullscreen[]; | 237 CONTENT_EXPORT extern const char kStartFullscreen[]; |
237 CONTENT_EXPORT extern const char kStatsCollectionController[]; | 238 CONTENT_EXPORT extern const char kStatsCollectionController[]; |
238 CONTENT_EXPORT extern const char kTestingFixedHttpPort[]; | 239 CONTENT_EXPORT extern const char kTestingFixedHttpPort[]; |
239 CONTENT_EXPORT extern const char kTestingFixedHttpsPort[]; | 240 CONTENT_EXPORT extern const char kTestingFixedHttpsPort[]; |
240 CONTENT_EXPORT extern const char kTestType[]; | 241 CONTENT_EXPORT extern const char kTestType[]; |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 extern const char kIpcDumpDirectory[]; | 323 extern const char kIpcDumpDirectory[]; |
323 extern const char kIpcFuzzerTestcase[]; | 324 extern const char kIpcFuzzerTestcase[]; |
324 #endif | 325 #endif |
325 | 326 |
326 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 327 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
327 // alphabetical order, or in one of the ifdefs (also in order in each section). | 328 // alphabetical order, or in one of the ifdefs (also in order in each section). |
328 | 329 |
329 } // namespace switches | 330 } // namespace switches |
330 | 331 |
331 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 332 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |