| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 extern const char kGpuDriverVersion[]; | 192 extern const char kGpuDriverVersion[]; |
| 193 extern const char kGpuLauncher[]; | 193 extern const char kGpuLauncher[]; |
| 194 CONTENT_EXPORT extern const char kGpuProcess[]; | 194 CONTENT_EXPORT extern const char kGpuProcess[]; |
| 195 CONTENT_EXPORT extern const char kGpuSandboxAllowSysVShm[]; | 195 CONTENT_EXPORT extern const char kGpuSandboxAllowSysVShm[]; |
| 196 CONTENT_EXPORT extern const char kGpuStartupDialog[]; | 196 CONTENT_EXPORT extern const char kGpuStartupDialog[]; |
| 197 extern const char kGpuVendorID[]; | 197 extern const char kGpuVendorID[]; |
| 198 CONTENT_EXPORT extern const char kHostResolverRules[]; | 198 CONTENT_EXPORT extern const char kHostResolverRules[]; |
| 199 CONTENT_EXPORT extern const char kIgnoreCertificateErrors[]; | 199 CONTENT_EXPORT extern const char kIgnoreCertificateErrors[]; |
| 200 CONTENT_EXPORT extern const char kIgnoreGpuBlacklist[]; | 200 CONTENT_EXPORT extern const char kIgnoreGpuBlacklist[]; |
| 201 extern const char kInProcessGPU[]; | 201 extern const char kInProcessGPU[]; |
| 202 extern const char kInProcessPlugins[]; | |
| 203 CONTENT_EXPORT extern const char kJavaScriptFlags[]; | 202 CONTENT_EXPORT extern const char kJavaScriptFlags[]; |
| 204 extern const char kLoadPlugin[]; | 203 extern const char kLoadPlugin[]; |
| 205 CONTENT_EXPORT extern const char kLogGpuControlListDecisions[]; | 204 CONTENT_EXPORT extern const char kLogGpuControlListDecisions[]; |
| 206 CONTENT_EXPORT extern const char kLoggingLevel[]; | 205 CONTENT_EXPORT extern const char kLoggingLevel[]; |
| 207 CONTENT_EXPORT extern const char kLogNetLog[]; | 206 CONTENT_EXPORT extern const char kLogNetLog[]; |
| 208 extern const char kLogPluginMessages[]; | 207 extern const char kLogPluginMessages[]; |
| 209 extern const char kMaxUntiledLayerHeight[]; | 208 extern const char kMaxUntiledLayerHeight[]; |
| 210 extern const char kMaxUntiledLayerWidth[]; | 209 extern const char kMaxUntiledLayerWidth[]; |
| 211 extern const char kMemoryMetrics[]; | 210 extern const char kMemoryMetrics[]; |
| 212 CONTENT_EXPORT extern const char kMuteAudio[]; | 211 CONTENT_EXPORT extern const char kMuteAudio[]; |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 #if defined(OS_POSIX) | 313 #if defined(OS_POSIX) |
| 315 extern const char kChildCleanExit[]; | 314 extern const char kChildCleanExit[]; |
| 316 #endif | 315 #endif |
| 317 | 316 |
| 318 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 317 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 319 // alphabetical order, or in one of the ifdefs (also in order in each section). | 318 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 320 | 319 |
| 321 } // namespace switches | 320 } // namespace switches |
| 322 | 321 |
| 323 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 322 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |