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 | 9 |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 extern const char kFirstRun[]; | 145 extern const char kFirstRun[]; |
146 extern const char kForceFieldTestNameAndValue[]; | 146 extern const char kForceFieldTestNameAndValue[]; |
147 extern const char kGpuLauncher[]; | 147 extern const char kGpuLauncher[]; |
148 extern const char kGpuProcess[]; | 148 extern const char kGpuProcess[]; |
149 extern const char kGpuStartupDialog[]; | 149 extern const char kGpuStartupDialog[]; |
150 extern const char kHelp[]; | 150 extern const char kHelp[]; |
151 extern const char kHelpShort[]; | 151 extern const char kHelpShort[]; |
152 extern const char kHideIcons[]; | 152 extern const char kHideIcons[]; |
153 extern const char kHomePage[]; | 153 extern const char kHomePage[]; |
154 extern const char kHostRules[]; | 154 extern const char kHostRules[]; |
| 155 extern const char kHostResolverParallelism[]; |
155 extern const char kHostResolverRules[]; | 156 extern const char kHostResolverRules[]; |
156 extern const char kImport[]; | 157 extern const char kImport[]; |
157 extern const char kImportFromFile[]; | 158 extern const char kImportFromFile[]; |
158 extern const char kInProcessPlugins[]; | 159 extern const char kInProcessPlugins[]; |
159 extern const char kInProcessWebGL[]; | 160 extern const char kInProcessWebGL[]; |
160 extern const char kIncognito[]; | 161 extern const char kIncognito[]; |
161 extern const char kInstallerTestBackup[]; | 162 extern const char kInstallerTestBackup[]; |
162 extern const char kInstallerTestBuild[]; | 163 extern const char kInstallerTestBuild[]; |
163 extern const char kInstallerTestClean[]; | 164 extern const char kInstallerTestClean[]; |
164 extern const char kInstallerTestForce[]; | 165 extern const char kInstallerTestForce[]; |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 #endif | 343 #endif |
343 // Return true if the switches indicate the seccomp sandbox is enabled. | 344 // Return true if the switches indicate the seccomp sandbox is enabled. |
344 bool SeccompSandboxEnabled(); | 345 bool SeccompSandboxEnabled(); |
345 | 346 |
346 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 347 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
347 // alphabetical order, or in one of the ifdefs (also in order in each section). | 348 // alphabetical order, or in one of the ifdefs (also in order in each section). |
348 | 349 |
349 } // namespace switches | 350 } // namespace switches |
350 | 351 |
351 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 352 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |