| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 CONTENT_EXPORT extern const char kIPCConnectionTimeout[]; | 179 CONTENT_EXPORT extern const char kIPCConnectionTimeout[]; |
| 180 CONTENT_EXPORT extern const char kJavaScriptFlags[]; | 180 CONTENT_EXPORT extern const char kJavaScriptFlags[]; |
| 181 CONTENT_EXPORT extern const char kJavaScriptHarmony[]; | 181 CONTENT_EXPORT extern const char kJavaScriptHarmony[]; |
| 182 CONTENT_EXPORT extern const char kLogGpuControlListDecisions[]; | 182 CONTENT_EXPORT extern const char kLogGpuControlListDecisions[]; |
| 183 CONTENT_EXPORT extern const char kLoggingLevel[]; | 183 CONTENT_EXPORT extern const char kLoggingLevel[]; |
| 184 CONTENT_EXPORT extern const char kLogNetLog[]; | 184 CONTENT_EXPORT extern const char kLogNetLog[]; |
| 185 CONTENT_EXPORT extern const char kMainFrameResizesAreOrientationChanges[]; | 185 CONTENT_EXPORT extern const char kMainFrameResizesAreOrientationChanges[]; |
| 186 extern const char kMaxUntiledLayerHeight[]; | 186 extern const char kMaxUntiledLayerHeight[]; |
| 187 extern const char kMaxUntiledLayerWidth[]; | 187 extern const char kMaxUntiledLayerWidth[]; |
| 188 extern const char kMemoryMetrics[]; | 188 extern const char kMemoryMetrics[]; |
| 189 CONTENT_EXPORT extern const char kMHTMLGeneratorOption[]; |
| 190 CONTENT_EXPORT extern const char kMHTMLSkipNostoreMain[]; |
| 191 CONTENT_EXPORT extern const char kMHTMLSkipNostoreAll[]; |
| 189 CONTENT_EXPORT extern const char kMojoLocalStorage[]; | 192 CONTENT_EXPORT extern const char kMojoLocalStorage[]; |
| 190 CONTENT_EXPORT extern const char kMuteAudio[]; | 193 CONTENT_EXPORT extern const char kMuteAudio[]; |
| 191 CONTENT_EXPORT extern const char kNoReferrers[]; | 194 CONTENT_EXPORT extern const char kNoReferrers[]; |
| 192 CONTENT_EXPORT extern const char kNoSandbox[]; | 195 CONTENT_EXPORT extern const char kNoSandbox[]; |
| 193 CONTENT_EXPORT extern const char kEnableAppContainer[]; | 196 CONTENT_EXPORT extern const char kEnableAppContainer[]; |
| 194 CONTENT_EXPORT extern const char kDisableAppContainer[]; | 197 CONTENT_EXPORT extern const char kDisableAppContainer[]; |
| 195 CONTENT_EXPORT extern const char kNumRasterThreads[]; | 198 CONTENT_EXPORT extern const char kNumRasterThreads[]; |
| 196 CONTENT_EXPORT extern const char kOverridePluginPowerSaverForTesting[]; | 199 CONTENT_EXPORT extern const char kOverridePluginPowerSaverForTesting[]; |
| 197 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; | 200 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; |
| 198 CONTENT_EXPORT extern const char kPassiveListenersDefault[]; | 201 CONTENT_EXPORT extern const char kPassiveListenersDefault[]; |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[]; | 307 CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[]; |
| 305 CONTENT_EXPORT extern const char kTraceExportEventsToETW[]; | 308 CONTENT_EXPORT extern const char kTraceExportEventsToETW[]; |
| 306 #endif | 309 #endif |
| 307 | 310 |
| 308 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 311 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 309 // alphabetical order, or in one of the ifdefs (also in order in each section). | 312 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 310 | 313 |
| 311 } // namespace switches | 314 } // namespace switches |
| 312 | 315 |
| 313 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 316 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |