Chromium Code Reviews| 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 172 CONTENT_EXPORT extern const char kForceRendererAccessibility[]; | 172 CONTENT_EXPORT extern const char kForceRendererAccessibility[]; |
| 173 CONTENT_EXPORT extern const char kGenerateAccessibilityTestExpectations[]; | 173 CONTENT_EXPORT extern const char kGenerateAccessibilityTestExpectations[]; |
| 174 extern const char kGpuLauncher[]; | 174 extern const char kGpuLauncher[]; |
| 175 CONTENT_EXPORT extern const char kGpuProcess[]; | 175 CONTENT_EXPORT extern const char kGpuProcess[]; |
| 176 CONTENT_EXPORT extern const char kGpuSandboxAllowSysVShm[]; | 176 CONTENT_EXPORT extern const char kGpuSandboxAllowSysVShm[]; |
| 177 CONTENT_EXPORT extern const char kGpuSandboxFailuresFatal[]; | 177 CONTENT_EXPORT extern const char kGpuSandboxFailuresFatal[]; |
| 178 CONTENT_EXPORT extern const char kGpuStartupDialog[]; | 178 CONTENT_EXPORT extern const char kGpuStartupDialog[]; |
| 179 CONTENT_EXPORT extern const char kHistoryEntryRequiresUserGesture[]; | 179 CONTENT_EXPORT extern const char kHistoryEntryRequiresUserGesture[]; |
| 180 CONTENT_EXPORT extern const char kHostResolverRules[]; | 180 CONTENT_EXPORT extern const char kHostResolverRules[]; |
| 181 CONTENT_EXPORT extern const char kIgnoreCertificateErrors[]; | 181 CONTENT_EXPORT extern const char kIgnoreCertificateErrors[]; |
| 182 CONTENT_EXPORT extern const char kIgnoreCertificateErrorsSPKIList[]; | |
| 183 CONTENT_EXPORT extern const char kIgnoreGpuBlacklist[]; | |
|
Ryan Sleevi
2017/03/16 23:19:13
unrelated?
martinkr
2017/03/28 23:16:02
Screwed up a rebase, sorry.
| |
| 182 CONTENT_EXPORT extern const char kInertVisualViewport[]; | 184 CONTENT_EXPORT extern const char kInertVisualViewport[]; |
| 183 CONTENT_EXPORT extern const char kInProcessGPU[]; | 185 CONTENT_EXPORT extern const char kInProcessGPU[]; |
| 184 CONTENT_EXPORT extern const char kIPCConnectionTimeout[]; | 186 CONTENT_EXPORT extern const char kIPCConnectionTimeout[]; |
| 185 CONTENT_EXPORT extern const char kIsRunningInMash[]; | 187 CONTENT_EXPORT extern const char kIsRunningInMash[]; |
| 186 CONTENT_EXPORT extern const char kJavaScriptFlags[]; | 188 CONTENT_EXPORT extern const char kJavaScriptFlags[]; |
| 187 CONTENT_EXPORT extern const char kJavaScriptHarmony[]; | 189 CONTENT_EXPORT extern const char kJavaScriptHarmony[]; |
| 188 CONTENT_EXPORT extern const char kLogGpuControlListDecisions[]; | 190 CONTENT_EXPORT extern const char kLogGpuControlListDecisions[]; |
| 189 CONTENT_EXPORT extern const char kLoggingLevel[]; | 191 CONTENT_EXPORT extern const char kLoggingLevel[]; |
| 190 CONTENT_EXPORT extern const char kLogNetLog[]; | 192 CONTENT_EXPORT extern const char kLogNetLog[]; |
| 191 CONTENT_EXPORT extern const char kMainFrameResizesAreOrientationChanges[]; | 193 CONTENT_EXPORT extern const char kMainFrameResizesAreOrientationChanges[]; |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 323 extern const char kIpcDumpDirectory[]; | 325 extern const char kIpcDumpDirectory[]; |
| 324 extern const char kIpcFuzzerTestcase[]; | 326 extern const char kIpcFuzzerTestcase[]; |
| 325 #endif | 327 #endif |
| 326 | 328 |
| 327 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 329 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 328 // alphabetical order, or in one of the ifdefs (also in order in each section). | 330 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 329 | 331 |
| 330 } // namespace switches | 332 } // namespace switches |
| 331 | 333 |
| 332 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 334 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |