| 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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 extern const char kOrganicInstall[]; | 233 extern const char kOrganicInstall[]; |
| 234 extern const char kPackExtension[]; | 234 extern const char kPackExtension[]; |
| 235 extern const char kPackExtensionKey[]; | 235 extern const char kPackExtensionKey[]; |
| 236 extern const char kParentProfile[]; | 236 extern const char kParentProfile[]; |
| 237 extern const char kPlaybackMode[]; | 237 extern const char kPlaybackMode[]; |
| 238 extern const char kPluginDataDir[]; | 238 extern const char kPluginDataDir[]; |
| 239 extern const char kPluginLauncher[]; | 239 extern const char kPluginLauncher[]; |
| 240 extern const char kPluginPath[]; | 240 extern const char kPluginPath[]; |
| 241 extern const char kPluginProcess[]; | 241 extern const char kPluginProcess[]; |
| 242 extern const char kPluginStartupDialog[]; | 242 extern const char kPluginStartupDialog[]; |
| 243 extern const char kPpapiOutOfProcess[]; |
| 244 extern const char kPpapiPluginLauncher[]; |
| 245 extern const char kPpapiPluginProcess[]; |
| 246 extern const char kPpapiStartupDialog[]; |
| 243 extern const char kPrelaunchGpuProcess[]; | 247 extern const char kPrelaunchGpuProcess[]; |
| 244 extern const char kPrint[]; | 248 extern const char kPrint[]; |
| 245 extern const char kProcessPerSite[]; | 249 extern const char kProcessPerSite[]; |
| 246 extern const char kProcessPerTab[]; | 250 extern const char kProcessPerTab[]; |
| 247 extern const char kProcessType[]; | 251 extern const char kProcessType[]; |
| 248 extern const char kProductVersion[]; | 252 extern const char kProductVersion[]; |
| 249 extern const char kProfileImportProcess[]; | 253 extern const char kProfileImportProcess[]; |
| 250 extern const char kProxyAutoDetect[]; | 254 extern const char kProxyAutoDetect[]; |
| 251 extern const char kProxyBypassList[]; | 255 extern const char kProxyBypassList[]; |
| 252 extern const char kProxyPacUrl[]; | 256 extern const char kProxyPacUrl[]; |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 #endif | 383 #endif |
| 380 // Return true if the switches indicate the seccomp sandbox is enabled. | 384 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 381 bool SeccompSandboxEnabled(); | 385 bool SeccompSandboxEnabled(); |
| 382 | 386 |
| 383 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 387 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 384 // alphabetical order, or in one of the ifdefs (also in order in each section). | 388 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 385 | 389 |
| 386 } // namespace switches | 390 } // namespace switches |
| 387 | 391 |
| 388 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 392 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |