| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 command-line switches used by Chrome. | 5 // Defines all the command-line switches used by Chrome. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
| 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 extern const char kEnableDNSCertProvenanceChecking[]; | 148 extern const char kEnableDNSCertProvenanceChecking[]; |
| 149 extern const char kEnableDNSSECCerts[]; | 149 extern const char kEnableDNSSECCerts[]; |
| 150 extern const char kEnableExperimentalExtensionApis[]; | 150 extern const char kEnableExperimentalExtensionApis[]; |
| 151 extern const char kEnableExtensionTimelineApi[]; | 151 extern const char kEnableExtensionTimelineApi[]; |
| 152 extern const char kEnableFastback[]; | 152 extern const char kEnableFastback[]; |
| 153 extern const char kEnableFileCookies[]; | 153 extern const char kEnableFileCookies[]; |
| 154 extern const char kEnableFileSystemURLScheme[]; | 154 extern const char kEnableFileSystemURLScheme[]; |
| 155 extern const char kEnableGPUPlugin[]; | 155 extern const char kEnableGPUPlugin[]; |
| 156 extern const char kEnableInBrowserThumbnailing[]; | 156 extern const char kEnableInBrowserThumbnailing[]; |
| 157 extern const char kEnableIPv6[]; | 157 extern const char kEnableIPv6[]; |
| 158 extern const char kEnableJavaScriptI18NAPI[]; |
| 158 extern const char kEnableLogging[]; | 159 extern const char kEnableLogging[]; |
| 159 extern const char kEnableMemoryInfo[]; | 160 extern const char kEnableMemoryInfo[]; |
| 160 extern const char kEnableMonitorProfile[]; | 161 extern const char kEnableMonitorProfile[]; |
| 161 extern const char kEnableNaCl[]; | 162 extern const char kEnableNaCl[]; |
| 162 extern const char kEnableNaClDebug[]; | 163 extern const char kEnableNaClDebug[]; |
| 163 extern const char kEnableNativeWebWorkers[]; | 164 extern const char kEnableNativeWebWorkers[]; |
| 164 extern const char kEnablePagePrerender[]; | 165 extern const char kEnablePagePrerender[]; |
| 165 extern const char kEnablePreconnect[]; | 166 extern const char kEnablePreconnect[]; |
| 166 extern const char kEnablePreparsedJsCaching[]; | 167 extern const char kEnablePreparsedJsCaching[]; |
| 167 extern const char kEnablePrintPreview[]; | 168 extern const char kEnablePrintPreview[]; |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 | 416 |
| 416 // Return true if the switches indicate the seccomp sandbox is enabled. | 417 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 417 bool SeccompSandboxEnabled(); | 418 bool SeccompSandboxEnabled(); |
| 418 | 419 |
| 419 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 420 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 420 // alphabetical order, or in one of the ifdefs (also in order in each section). | 421 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 421 | 422 |
| 422 } // namespace switches | 423 } // namespace switches |
| 423 | 424 |
| 424 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 425 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |