| 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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 extern const char kGpuLauncher[]; | 160 extern const char kGpuLauncher[]; |
| 161 CONTENT_EXPORT extern const char kGpuProcess[]; | 161 CONTENT_EXPORT extern const char kGpuProcess[]; |
| 162 CONTENT_EXPORT extern const char kGpuSandboxAllowSysVShm[]; | 162 CONTENT_EXPORT extern const char kGpuSandboxAllowSysVShm[]; |
| 163 CONTENT_EXPORT extern const char kGpuSandboxFailuresFatal[]; | 163 CONTENT_EXPORT extern const char kGpuSandboxFailuresFatal[]; |
| 164 CONTENT_EXPORT extern const char kGpuSandboxStartEarly[]; | 164 CONTENT_EXPORT extern const char kGpuSandboxStartEarly[]; |
| 165 CONTENT_EXPORT extern const char kGpuStartupDialog[]; | 165 CONTENT_EXPORT extern const char kGpuStartupDialog[]; |
| 166 extern const char kGpuVendorID[]; | 166 extern const char kGpuVendorID[]; |
| 167 CONTENT_EXPORT extern const char kHostResolverRules[]; | 167 CONTENT_EXPORT extern const char kHostResolverRules[]; |
| 168 CONTENT_EXPORT extern const char kIgnoreCertificateErrors[]; | 168 CONTENT_EXPORT extern const char kIgnoreCertificateErrors[]; |
| 169 CONTENT_EXPORT extern const char kIgnoreGpuBlacklist[]; | 169 CONTENT_EXPORT extern const char kIgnoreGpuBlacklist[]; |
| 170 CONTENT_EXPORT extern const char kInertVisualViewport[]; |
| 170 CONTENT_EXPORT extern const char kInProcessGPU[]; | 171 CONTENT_EXPORT extern const char kInProcessGPU[]; |
| 171 CONTENT_EXPORT extern const char kIPCConnectionTimeout[]; | 172 CONTENT_EXPORT extern const char kIPCConnectionTimeout[]; |
| 172 CONTENT_EXPORT extern const char kJavaScriptFlags[]; | 173 CONTENT_EXPORT extern const char kJavaScriptFlags[]; |
| 173 extern const char kLoadPlugin[]; | 174 extern const char kLoadPlugin[]; |
| 174 CONTENT_EXPORT extern const char kLogGpuControlListDecisions[]; | 175 CONTENT_EXPORT extern const char kLogGpuControlListDecisions[]; |
| 175 CONTENT_EXPORT extern const char kLoggingLevel[]; | 176 CONTENT_EXPORT extern const char kLoggingLevel[]; |
| 176 CONTENT_EXPORT extern const char kLogNetLog[]; | 177 CONTENT_EXPORT extern const char kLogNetLog[]; |
| 177 extern const char kLogPluginMessages[]; | 178 extern const char kLogPluginMessages[]; |
| 178 CONTENT_EXPORT extern const char kMainFrameResizesAreOrientationChanges[]; | 179 CONTENT_EXPORT extern const char kMainFrameResizesAreOrientationChanges[]; |
| 179 extern const char kMaxUntiledLayerHeight[]; | 180 extern const char kMaxUntiledLayerHeight[]; |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[]; | 303 CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[]; |
| 303 CONTENT_EXPORT extern const char kTraceExportEventsToETW[]; | 304 CONTENT_EXPORT extern const char kTraceExportEventsToETW[]; |
| 304 #endif | 305 #endif |
| 305 | 306 |
| 306 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 307 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 307 // alphabetical order, or in one of the ifdefs (also in order in each section). | 308 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 308 | 309 |
| 309 } // namespace switches | 310 } // namespace switches |
| 310 | 311 |
| 311 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 312 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |