| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 CONTENT_EXPORT extern const char kLogGpuControlListDecisions[]; | 175 CONTENT_EXPORT extern const char kLogGpuControlListDecisions[]; |
| 176 CONTENT_EXPORT extern const char kLoggingLevel[]; | 176 CONTENT_EXPORT extern const char kLoggingLevel[]; |
| 177 CONTENT_EXPORT extern const char kLogNetLog[]; | 177 CONTENT_EXPORT extern const char kLogNetLog[]; |
| 178 extern const char kLogPluginMessages[]; | 178 extern const char kLogPluginMessages[]; |
| 179 extern const char kMaxUntiledLayerHeight[]; | 179 extern const char kMaxUntiledLayerHeight[]; |
| 180 extern const char kMaxUntiledLayerWidth[]; | 180 extern const char kMaxUntiledLayerWidth[]; |
| 181 extern const char kMemoryMetrics[]; | 181 extern const char kMemoryMetrics[]; |
| 182 CONTENT_EXPORT extern const char kMuteAudio[]; | 182 CONTENT_EXPORT extern const char kMuteAudio[]; |
| 183 CONTENT_EXPORT extern const char kNoReferrers[]; | 183 CONTENT_EXPORT extern const char kNoReferrers[]; |
| 184 CONTENT_EXPORT extern const char kNoSandbox[]; | 184 CONTENT_EXPORT extern const char kNoSandbox[]; |
| 185 CONTENT_EXPORT extern const char kDisableAppContainer[]; | 185 CONTENT_EXPORT extern const char kEnableAppContainer[]; |
| 186 CONTENT_EXPORT extern const char kNumRasterThreads[]; | 186 CONTENT_EXPORT extern const char kNumRasterThreads[]; |
| 187 CONTENT_EXPORT extern const char kOverridePluginPowerSaverForTesting[]; | 187 CONTENT_EXPORT extern const char kOverridePluginPowerSaverForTesting[]; |
| 188 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; | 188 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; |
| 189 extern const char kPluginLauncher[]; | 189 extern const char kPluginLauncher[]; |
| 190 CONTENT_EXPORT extern const char kPluginPath[]; | 190 CONTENT_EXPORT extern const char kPluginPath[]; |
| 191 CONTENT_EXPORT extern const char kPluginProcess[]; | 191 CONTENT_EXPORT extern const char kPluginProcess[]; |
| 192 extern const char kPluginStartupDialog[]; | 192 extern const char kPluginStartupDialog[]; |
| 193 CONTENT_EXPORT extern const char kPpapiBrokerProcess[]; | 193 CONTENT_EXPORT extern const char kPpapiBrokerProcess[]; |
| 194 CONTENT_EXPORT extern const char kPpapiFlashArgs[]; | 194 CONTENT_EXPORT extern const char kPpapiFlashArgs[]; |
| 195 CONTENT_EXPORT extern const char kPpapiInProcess[]; | 195 CONTENT_EXPORT extern const char kPpapiInProcess[]; |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 #endif | 301 #endif |
| 302 | 302 |
| 303 CONTENT_EXPORT extern const char kEnableNpapi[]; | 303 CONTENT_EXPORT extern const char kEnableNpapi[]; |
| 304 | 304 |
| 305 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 305 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 306 // alphabetical order, or in one of the ifdefs (also in order in each section). | 306 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 307 | 307 |
| 308 } // namespace switches | 308 } // namespace switches |
| 309 | 309 |
| 310 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 310 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |