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