| 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 extern const char kMemoryMetrics[]; | 188 extern const char kMemoryMetrics[]; |
| 189 CONTENT_EXPORT extern const char kMojoLocalStorage[]; | 189 CONTENT_EXPORT extern const char kMojoLocalStorage[]; |
| 190 CONTENT_EXPORT extern const char kMuteAudio[]; | 190 CONTENT_EXPORT extern const char kMuteAudio[]; |
| 191 CONTENT_EXPORT extern const char kNoReferrers[]; | 191 CONTENT_EXPORT extern const char kNoReferrers[]; |
| 192 CONTENT_EXPORT extern const char kNoSandbox[]; | 192 CONTENT_EXPORT extern const char kNoSandbox[]; |
| 193 CONTENT_EXPORT extern const char kEnableAppContainer[]; | 193 CONTENT_EXPORT extern const char kEnableAppContainer[]; |
| 194 CONTENT_EXPORT extern const char kDisableAppContainer[]; | 194 CONTENT_EXPORT extern const char kDisableAppContainer[]; |
| 195 CONTENT_EXPORT extern const char kNumRasterThreads[]; | 195 CONTENT_EXPORT extern const char kNumRasterThreads[]; |
| 196 CONTENT_EXPORT extern const char kOverridePluginPowerSaverForTesting[]; | 196 CONTENT_EXPORT extern const char kOverridePluginPowerSaverForTesting[]; |
| 197 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; | 197 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; |
| 198 CONTENT_EXPORT extern const char kPassiveListenersDefault[]; |
| 198 CONTENT_EXPORT extern const char kPpapiBrokerProcess[]; | 199 CONTENT_EXPORT extern const char kPpapiBrokerProcess[]; |
| 199 CONTENT_EXPORT extern const char kPpapiFlashArgs[]; | 200 CONTENT_EXPORT extern const char kPpapiFlashArgs[]; |
| 200 CONTENT_EXPORT extern const char kPpapiInProcess[]; | 201 CONTENT_EXPORT extern const char kPpapiInProcess[]; |
| 201 extern const char kPpapiPluginLauncher[]; | 202 extern const char kPpapiPluginLauncher[]; |
| 202 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; | 203 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; |
| 203 extern const char kPpapiStartupDialog[]; | 204 extern const char kPpapiStartupDialog[]; |
| 204 CONTENT_EXPORT extern const char kProcessPerSite[]; | 205 CONTENT_EXPORT extern const char kProcessPerSite[]; |
| 205 CONTENT_EXPORT extern const char kProcessPerTab[]; | 206 CONTENT_EXPORT extern const char kProcessPerTab[]; |
| 206 CONTENT_EXPORT extern const char kProcessType[]; | 207 CONTENT_EXPORT extern const char kProcessType[]; |
| 207 CONTENT_EXPORT extern const char kReduceSecurityForTesting[]; | 208 CONTENT_EXPORT extern const char kReduceSecurityForTesting[]; |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[]; | 304 CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[]; |
| 304 CONTENT_EXPORT extern const char kTraceExportEventsToETW[]; | 305 CONTENT_EXPORT extern const char kTraceExportEventsToETW[]; |
| 305 #endif | 306 #endif |
| 306 | 307 |
| 307 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 308 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 308 // alphabetical order, or in one of the ifdefs (also in order in each section). | 309 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 309 | 310 |
| 310 } // namespace switches | 311 } // namespace switches |
| 311 | 312 |
| 312 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 313 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |