| 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 CONTENT_EXPORT extern const char kGpuSandboxFailuresFatal[]; | 155 CONTENT_EXPORT extern const char kGpuSandboxFailuresFatal[]; |
| 156 CONTENT_EXPORT extern const char kGpuSandboxStartEarly[]; | 156 CONTENT_EXPORT extern const char kGpuSandboxStartEarly[]; |
| 157 CONTENT_EXPORT extern const char kGpuStartupDialog[]; | 157 CONTENT_EXPORT extern const char kGpuStartupDialog[]; |
| 158 extern const char kGpuVendorID[]; | 158 extern const char kGpuVendorID[]; |
| 159 CONTENT_EXPORT extern const char kHostResolverRules[]; | 159 CONTENT_EXPORT extern const char kHostResolverRules[]; |
| 160 CONTENT_EXPORT extern const char kIgnoreCertificateErrors[]; | 160 CONTENT_EXPORT extern const char kIgnoreCertificateErrors[]; |
| 161 CONTENT_EXPORT extern const char kIgnoreGpuBlacklist[]; | 161 CONTENT_EXPORT extern const char kIgnoreGpuBlacklist[]; |
| 162 extern const char kInProcessGPU[]; | 162 extern const char kInProcessGPU[]; |
| 163 CONTENT_EXPORT extern const char kIPCConnectionTimeout[]; | 163 CONTENT_EXPORT extern const char kIPCConnectionTimeout[]; |
| 164 CONTENT_EXPORT extern const char kJavaScriptFlags[]; | 164 CONTENT_EXPORT extern const char kJavaScriptFlags[]; |
| 165 CONTENT_EXPORT extern const char kJavaScriptHarmony[]; |
| 165 extern const char kLoadPlugin[]; | 166 extern const char kLoadPlugin[]; |
| 166 CONTENT_EXPORT extern const char kLogGpuControlListDecisions[]; | 167 CONTENT_EXPORT extern const char kLogGpuControlListDecisions[]; |
| 167 CONTENT_EXPORT extern const char kLoggingLevel[]; | 168 CONTENT_EXPORT extern const char kLoggingLevel[]; |
| 168 CONTENT_EXPORT extern const char kLogNetLog[]; | 169 CONTENT_EXPORT extern const char kLogNetLog[]; |
| 169 extern const char kLogPluginMessages[]; | 170 extern const char kLogPluginMessages[]; |
| 170 extern const char kMaxUntiledLayerHeight[]; | 171 extern const char kMaxUntiledLayerHeight[]; |
| 171 extern const char kMaxUntiledLayerWidth[]; | 172 extern const char kMaxUntiledLayerWidth[]; |
| 172 extern const char kMemoryMetrics[]; | 173 extern const char kMemoryMetrics[]; |
| 173 CONTENT_EXPORT extern const char kMuteAudio[]; | 174 CONTENT_EXPORT extern const char kMuteAudio[]; |
| 174 CONTENT_EXPORT extern const char kNoReferrers[]; | 175 CONTENT_EXPORT extern const char kNoReferrers[]; |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 // mitigation. | 284 // mitigation. |
| 284 CONTENT_EXPORT extern const char kEnableWin32kRendererLockDown[]; | 285 CONTENT_EXPORT extern const char kEnableWin32kRendererLockDown[]; |
| 285 #endif | 286 #endif |
| 286 | 287 |
| 287 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 288 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 288 // alphabetical order, or in one of the ifdefs (also in order in each section). | 289 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 289 | 290 |
| 290 } // namespace switches | 291 } // namespace switches |
| 291 | 292 |
| 292 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 293 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |