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