| 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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 extern const char kMemoryMetrics[]; | 194 extern const char kMemoryMetrics[]; |
| 195 CONTENT_EXPORT extern const char kMHTMLGeneratorOption[]; | 195 CONTENT_EXPORT extern const char kMHTMLGeneratorOption[]; |
| 196 CONTENT_EXPORT extern const char kMHTMLSkipNostoreMain[]; | 196 CONTENT_EXPORT extern const char kMHTMLSkipNostoreMain[]; |
| 197 CONTENT_EXPORT extern const char kMHTMLSkipNostoreAll[]; | 197 CONTENT_EXPORT extern const char kMHTMLSkipNostoreAll[]; |
| 198 CONTENT_EXPORT extern const char kMojoLocalStorage[]; | 198 CONTENT_EXPORT extern const char kMojoLocalStorage[]; |
| 199 CONTENT_EXPORT extern const char kMuteAudio[]; | 199 CONTENT_EXPORT extern const char kMuteAudio[]; |
| 200 CONTENT_EXPORT extern const char kNoReferrers[]; | 200 CONTENT_EXPORT extern const char kNoReferrers[]; |
| 201 CONTENT_EXPORT extern const char kNoSandbox[]; | 201 CONTENT_EXPORT extern const char kNoSandbox[]; |
| 202 CONTENT_EXPORT extern const char kEnableAppContainer[]; | 202 CONTENT_EXPORT extern const char kEnableAppContainer[]; |
| 203 CONTENT_EXPORT extern const char kDisableAppContainer[]; | 203 CONTENT_EXPORT extern const char kDisableAppContainer[]; |
| 204 CONTENT_EXPORT extern const char kNumRasterThreads[]; | 204 CONTENT_EXPORT extern const char kNumCategorizedWorkerThreads[]; |
| 205 CONTENT_EXPORT extern const char kOverridePluginPowerSaverForTesting[]; | 205 CONTENT_EXPORT extern const char kOverridePluginPowerSaverForTesting[]; |
| 206 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; | 206 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; |
| 207 CONTENT_EXPORT extern const char kPassiveListenersDefault[]; | 207 CONTENT_EXPORT extern const char kPassiveListenersDefault[]; |
| 208 CONTENT_EXPORT extern const char kPpapiBrokerProcess[]; | 208 CONTENT_EXPORT extern const char kPpapiBrokerProcess[]; |
| 209 CONTENT_EXPORT extern const char kPpapiFlashArgs[]; | 209 CONTENT_EXPORT extern const char kPpapiFlashArgs[]; |
| 210 CONTENT_EXPORT extern const char kPpapiInProcess[]; | 210 CONTENT_EXPORT extern const char kPpapiInProcess[]; |
| 211 extern const char kPpapiPluginLauncher[]; | 211 extern const char kPpapiPluginLauncher[]; |
| 212 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; | 212 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; |
| 213 extern const char kPpapiStartupDialog[]; | 213 extern const char kPpapiStartupDialog[]; |
| 214 CONTENT_EXPORT extern const char kProcessPerSite[]; | 214 CONTENT_EXPORT extern const char kProcessPerSite[]; |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[]; | 311 CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[]; |
| 312 CONTENT_EXPORT extern const char kTraceExportEventsToETW[]; | 312 CONTENT_EXPORT extern const char kTraceExportEventsToETW[]; |
| 313 #endif | 313 #endif |
| 314 | 314 |
| 315 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 315 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 316 // alphabetical order, or in one of the ifdefs (also in order in each section). | 316 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 317 | 317 |
| 318 } // namespace switches | 318 } // namespace switches |
| 319 | 319 |
| 320 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 320 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |