| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; | 222 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; |
| 223 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; | 223 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; |
| 224 CONTENT_EXPORT extern const char kRendererClientId[]; | 224 CONTENT_EXPORT extern const char kRendererClientId[]; |
| 225 extern const char kRendererCmdPrefix[]; | 225 extern const char kRendererCmdPrefix[]; |
| 226 CONTENT_EXPORT extern const char kRendererProcess[]; | 226 CONTENT_EXPORT extern const char kRendererProcess[]; |
| 227 CONTENT_EXPORT extern const char kRendererProcessLimit[]; | 227 CONTENT_EXPORT extern const char kRendererProcessLimit[]; |
| 228 CONTENT_EXPORT extern const char kRendererStartupDialog[]; | 228 CONTENT_EXPORT extern const char kRendererStartupDialog[]; |
| 229 CONTENT_EXPORT extern const char kRootLayerScrolls[]; | 229 CONTENT_EXPORT extern const char kRootLayerScrolls[]; |
| 230 extern const char kSandboxIPCProcess[]; | 230 extern const char kSandboxIPCProcess[]; |
| 231 CONTENT_EXPORT extern const char kScrollEndEffect[]; | 231 CONTENT_EXPORT extern const char kScrollEndEffect[]; |
| 232 CONTENT_EXPORT extern const char kSharedFiles[]; | |
| 233 extern const char kShowPaintRects[]; | 232 extern const char kShowPaintRects[]; |
| 234 CONTENT_EXPORT extern const char kSingleProcess[]; | 233 CONTENT_EXPORT extern const char kSingleProcess[]; |
| 235 CONTENT_EXPORT extern const char kSitePerProcess[]; | 234 CONTENT_EXPORT extern const char kSitePerProcess[]; |
| 236 CONTENT_EXPORT extern const char kSkipGpuDataLoading[]; | 235 CONTENT_EXPORT extern const char kSkipGpuDataLoading[]; |
| 237 extern const char kSkipReencodingOnSKPCapture[]; | 236 extern const char kSkipReencodingOnSKPCapture[]; |
| 238 CONTENT_EXPORT extern const char kStartFullscreen[]; | 237 CONTENT_EXPORT extern const char kStartFullscreen[]; |
| 239 CONTENT_EXPORT extern const char kStatsCollectionController[]; | 238 CONTENT_EXPORT extern const char kStatsCollectionController[]; |
| 240 CONTENT_EXPORT extern const char kTestingFixedHttpPort[]; | 239 CONTENT_EXPORT extern const char kTestingFixedHttpPort[]; |
| 241 CONTENT_EXPORT extern const char kTestingFixedHttpsPort[]; | 240 CONTENT_EXPORT extern const char kTestingFixedHttpsPort[]; |
| 242 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... |
| 324 extern const char kIpcDumpDirectory[]; | 323 extern const char kIpcDumpDirectory[]; |
| 325 extern const char kIpcFuzzerTestcase[]; | 324 extern const char kIpcFuzzerTestcase[]; |
| 326 #endif | 325 #endif |
| 327 | 326 |
| 328 // 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 |
| 329 // 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). |
| 330 | 329 |
| 331 } // namespace switches | 330 } // namespace switches |
| 332 | 331 |
| 333 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 332 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |