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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 extern const char kEnableClickToPlay[]; | 136 extern const char kEnableClickToPlay[]; |
137 extern const char kEnableCloudPrintProxy[]; | 137 extern const char kEnableCloudPrintProxy[]; |
138 extern const char kEnableCloudPrint[]; | 138 extern const char kEnableCloudPrint[]; |
139 extern const char kEnableConfirmToQuit[]; | 139 extern const char kEnableConfirmToQuit[]; |
140 extern const char kEnableConnectBackupJobs[]; | 140 extern const char kEnableConnectBackupJobs[]; |
141 extern const char kEnableContentPrefetch[]; | 141 extern const char kEnableContentPrefetch[]; |
142 extern const char kEnableCrxlessWebApps[]; | 142 extern const char kEnableCrxlessWebApps[]; |
143 extern const char kEnableDeviceMotion[]; | 143 extern const char kEnableDeviceMotion[]; |
144 extern const char kEnableDNSCertProvenanceChecking[]; | 144 extern const char kEnableDNSCertProvenanceChecking[]; |
145 extern const char kEnableDNSSECCerts[]; | 145 extern const char kEnableDNSSECCerts[]; |
| 146 extern const char kEnableExperimentalAppManifests[]; |
146 extern const char kEnableExperimentalExtensionApis[]; | 147 extern const char kEnableExperimentalExtensionApis[]; |
147 extern const char kEnableExtensionTimelineApi[]; | 148 extern const char kEnableExtensionTimelineApi[]; |
148 extern const char kEnableFastback[]; | 149 extern const char kEnableFastback[]; |
149 extern const char kEnableFileCookies[]; | 150 extern const char kEnableFileCookies[]; |
150 extern const char kEnableGPUPlugin[]; | 151 extern const char kEnableGPUPlugin[]; |
151 extern const char kEnableIPv6[]; | 152 extern const char kEnableIPv6[]; |
152 extern const char kEnableLogging[]; | 153 extern const char kEnableLogging[]; |
153 extern const char kEnableMemoryInfo[]; | 154 extern const char kEnableMemoryInfo[]; |
154 extern const char kEnableMonitorProfile[]; | 155 extern const char kEnableMonitorProfile[]; |
155 extern const char kEnableNaCl[]; | 156 extern const char kEnableNaCl[]; |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 | 413 |
413 // Return true if the switches indicate the seccomp sandbox is enabled. | 414 // Return true if the switches indicate the seccomp sandbox is enabled. |
414 bool SeccompSandboxEnabled(); | 415 bool SeccompSandboxEnabled(); |
415 | 416 |
416 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 417 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
417 // alphabetical order, or in one of the ifdefs (also in order in each section). | 418 // alphabetical order, or in one of the ifdefs (also in order in each section). |
418 | 419 |
419 } // namespace switches | 420 } // namespace switches |
420 | 421 |
421 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 422 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |