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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 extern const char kPluginDataDir[]; | 209 extern const char kPluginDataDir[]; |
210 extern const char kPluginLauncher[]; | 210 extern const char kPluginLauncher[]; |
211 extern const char kPluginPath[]; | 211 extern const char kPluginPath[]; |
212 extern const char kPluginProcess[]; | 212 extern const char kPluginProcess[]; |
213 extern const char kPluginStartupDialog[]; | 213 extern const char kPluginStartupDialog[]; |
214 extern const char kPreconnectDespiteProxy[]; | 214 extern const char kPreconnectDespiteProxy[]; |
215 extern const char kPrelaunchGpuProcess[]; | 215 extern const char kPrelaunchGpuProcess[]; |
216 extern const char kPrint[]; | 216 extern const char kPrint[]; |
217 extern const char kProcessPerSite[]; | 217 extern const char kProcessPerSite[]; |
218 extern const char kProcessPerTab[]; | 218 extern const char kProcessPerTab[]; |
| 219 extern const char kProcessType[]; |
219 extern const char kProductVersion[]; | 220 extern const char kProductVersion[]; |
220 extern const char kProfileImportProcess[]; | 221 extern const char kProfileImportProcess[]; |
221 extern const char kProxyAutoDetect[]; | 222 extern const char kProxyAutoDetect[]; |
222 extern const char kProxyBypassList[]; | 223 extern const char kProxyBypassList[]; |
223 extern const char kProxyPacUrl[]; | 224 extern const char kProxyPacUrl[]; |
224 extern const char kProxyServer[]; | 225 extern const char kProxyServer[]; |
225 extern const char kPurgeMemoryButton[]; | 226 extern const char kPurgeMemoryButton[]; |
226 extern const char kRecordMode[]; | 227 extern const char kRecordMode[]; |
227 extern const char kRegisterPepperPlugins[]; | 228 extern const char kRegisterPepperPlugins[]; |
228 extern const char kRemoteDebuggingPort[]; | 229 extern const char kRemoteDebuggingPort[]; |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 #endif | 351 #endif |
351 // Return true if the switches indicate the seccomp sandbox is enabled. | 352 // Return true if the switches indicate the seccomp sandbox is enabled. |
352 bool SeccompSandboxEnabled(); | 353 bool SeccompSandboxEnabled(); |
353 | 354 |
354 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 355 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
355 // alphabetical order, or in one of the ifdefs (also in order in each section). | 356 // alphabetical order, or in one of the ifdefs (also in order in each section). |
356 | 357 |
357 } // namespace switches | 358 } // namespace switches |
358 | 359 |
359 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 360 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |