| 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 CONTENT_EXPORT extern const char kLogGpuControlListDecisions[]; | 166 CONTENT_EXPORT extern const char kLogGpuControlListDecisions[]; |
| 167 CONTENT_EXPORT extern const char kLoggingLevel[]; | 167 CONTENT_EXPORT extern const char kLoggingLevel[]; |
| 168 CONTENT_EXPORT extern const char kLogNetLog[]; | 168 CONTENT_EXPORT extern const char kLogNetLog[]; |
| 169 extern const char kLogPluginMessages[]; | 169 extern const char kLogPluginMessages[]; |
| 170 extern const char kMaxUntiledLayerHeight[]; | 170 extern const char kMaxUntiledLayerHeight[]; |
| 171 extern const char kMaxUntiledLayerWidth[]; | 171 extern const char kMaxUntiledLayerWidth[]; |
| 172 extern const char kMemoryMetrics[]; | 172 extern const char kMemoryMetrics[]; |
| 173 CONTENT_EXPORT extern const char kMuteAudio[]; | 173 CONTENT_EXPORT extern const char kMuteAudio[]; |
| 174 CONTENT_EXPORT extern const char kNoReferrers[]; | 174 CONTENT_EXPORT extern const char kNoReferrers[]; |
| 175 CONTENT_EXPORT extern const char kNoSandbox[]; | 175 CONTENT_EXPORT extern const char kNoSandbox[]; |
| 176 CONTENT_EXPORT extern const char kEnableNamespaceSandbox[]; |
| 176 CONTENT_EXPORT extern const char kNumRasterThreads[]; | 177 CONTENT_EXPORT extern const char kNumRasterThreads[]; |
| 177 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; | 178 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; |
| 178 extern const char kPluginLauncher[]; | 179 extern const char kPluginLauncher[]; |
| 179 CONTENT_EXPORT extern const char kPluginPath[]; | 180 CONTENT_EXPORT extern const char kPluginPath[]; |
| 180 CONTENT_EXPORT extern const char kPluginProcess[]; | 181 CONTENT_EXPORT extern const char kPluginProcess[]; |
| 181 extern const char kPluginStartupDialog[]; | 182 extern const char kPluginStartupDialog[]; |
| 182 CONTENT_EXPORT extern const char kPpapiBrokerProcess[]; | 183 CONTENT_EXPORT extern const char kPpapiBrokerProcess[]; |
| 183 CONTENT_EXPORT extern const char kPpapiFlashArgs[]; | 184 CONTENT_EXPORT extern const char kPpapiFlashArgs[]; |
| 184 CONTENT_EXPORT extern const char kPpapiInProcess[]; | 185 CONTENT_EXPORT extern const char kPpapiInProcess[]; |
| 185 extern const char kPpapiPluginLauncher[]; | 186 extern const char kPpapiPluginLauncher[]; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 #if defined(ENABLE_PLUGINS) | 296 #if defined(ENABLE_PLUGINS) |
| 296 CONTENT_EXPORT extern const char kEnablePluginPowerSaver[]; | 297 CONTENT_EXPORT extern const char kEnablePluginPowerSaver[]; |
| 297 #endif | 298 #endif |
| 298 | 299 |
| 299 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 300 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 300 // alphabetical order, or in one of the ifdefs (also in order in each section). | 301 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 301 | 302 |
| 302 } // namespace switches | 303 } // namespace switches |
| 303 | 304 |
| 304 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 305 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |