| 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 extern const char kPpapiOutOfProcess[]; | 268 extern const char kPpapiOutOfProcess[]; |
| 269 extern const char kPpapiPluginLauncher[]; | 269 extern const char kPpapiPluginLauncher[]; |
| 270 extern const char kPpapiPluginProcess[]; | 270 extern const char kPpapiPluginProcess[]; |
| 271 extern const char kPpapiStartupDialog[]; | 271 extern const char kPpapiStartupDialog[]; |
| 272 extern const char kPrint[]; | 272 extern const char kPrint[]; |
| 273 extern const char kProcessPerSite[]; | 273 extern const char kProcessPerSite[]; |
| 274 extern const char kProcessPerTab[]; | 274 extern const char kProcessPerTab[]; |
| 275 extern const char kProcessType[]; | 275 extern const char kProcessType[]; |
| 276 extern const char kProductVersion[]; | 276 extern const char kProductVersion[]; |
| 277 extern const char kProfileImportProcess[]; | 277 extern const char kProfileImportProcess[]; |
| 278 extern const char kProfilingAtStart[]; |
| 279 extern const char kProfilingFile[]; |
| 280 extern const char kProfilingFlush[]; |
| 278 extern const char kProxyAutoDetect[]; | 281 extern const char kProxyAutoDetect[]; |
| 279 extern const char kProxyBypassList[]; | 282 extern const char kProxyBypassList[]; |
| 280 extern const char kProxyPacUrl[]; | 283 extern const char kProxyPacUrl[]; |
| 281 extern const char kProxyServer[]; | 284 extern const char kProxyServer[]; |
| 282 extern const char kPurgeMemoryButton[]; | 285 extern const char kPurgeMemoryButton[]; |
| 283 extern const char kRecordMode[]; | 286 extern const char kRecordMode[]; |
| 284 extern const char kRegisterPepperPlugins[]; | 287 extern const char kRegisterPepperPlugins[]; |
| 285 extern const char kReloadKilledTabs[]; | 288 extern const char kReloadKilledTabs[]; |
| 286 extern const char kRemoteDebuggingPort[]; | 289 extern const char kRemoteDebuggingPort[]; |
| 287 extern const char kRemoteShellPort[]; | 290 extern const char kRemoteShellPort[]; |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 | 416 |
| 414 // Return true if the switches indicate the seccomp sandbox is enabled. | 417 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 415 bool SeccompSandboxEnabled(); | 418 bool SeccompSandboxEnabled(); |
| 416 | 419 |
| 417 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 420 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 418 // alphabetical order, or in one of the ifdefs (also in order in each section). | 421 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 419 | 422 |
| 420 } // namespace switches | 423 } // namespace switches |
| 421 | 424 |
| 422 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 425 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |