| 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 extern const char kPlaybackMode[]; | 260 extern const char kPlaybackMode[]; |
| 261 extern const char kPluginDataDir[]; | 261 extern const char kPluginDataDir[]; |
| 262 extern const char kPluginLauncher[]; | 262 extern const char kPluginLauncher[]; |
| 263 extern const char kPluginPath[]; | 263 extern const char kPluginPath[]; |
| 264 extern const char kPluginProcess[]; | 264 extern const char kPluginProcess[]; |
| 265 extern const char kPluginStartupDialog[]; | 265 extern const char kPluginStartupDialog[]; |
| 266 extern const char kPpapiOutOfProcess[]; | 266 extern const char kPpapiOutOfProcess[]; |
| 267 extern const char kPpapiPluginLauncher[]; | 267 extern const char kPpapiPluginLauncher[]; |
| 268 extern const char kPpapiPluginProcess[]; | 268 extern const char kPpapiPluginProcess[]; |
| 269 extern const char kPpapiStartupDialog[]; | 269 extern const char kPpapiStartupDialog[]; |
| 270 extern const char kPrelaunchGpuProcess[]; | |
| 271 extern const char kPrint[]; | 270 extern const char kPrint[]; |
| 272 extern const char kProcessPerSite[]; | 271 extern const char kProcessPerSite[]; |
| 273 extern const char kProcessPerTab[]; | 272 extern const char kProcessPerTab[]; |
| 274 extern const char kProcessType[]; | 273 extern const char kProcessType[]; |
| 275 extern const char kProductVersion[]; | 274 extern const char kProductVersion[]; |
| 276 extern const char kProfileImportProcess[]; | 275 extern const char kProfileImportProcess[]; |
| 277 extern const char kProxyAutoDetect[]; | 276 extern const char kProxyAutoDetect[]; |
| 278 extern const char kProxyBypassList[]; | 277 extern const char kProxyBypassList[]; |
| 279 extern const char kProxyPacUrl[]; | 278 extern const char kProxyPacUrl[]; |
| 280 extern const char kProxyServer[]; | 279 extern const char kProxyServer[]; |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 | 411 |
| 413 // Return true if the switches indicate the seccomp sandbox is enabled. | 412 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 414 bool SeccompSandboxEnabled(); | 413 bool SeccompSandboxEnabled(); |
| 415 | 414 |
| 416 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 415 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 417 // alphabetical order, or in one of the ifdefs (also in order in each section). | 416 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 418 | 417 |
| 419 } // namespace switches | 418 } // namespace switches |
| 420 | 419 |
| 421 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 420 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |