| 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 extern const char kEnableWatchdog[]; | 155 extern const char kEnableWatchdog[]; |
| 156 extern const char kEnableWin7Location[]; | 156 extern const char kEnableWin7Location[]; |
| 157 extern const char kEnableXSSAuditor[]; | 157 extern const char kEnableXSSAuditor[]; |
| 158 // Experimental features. | 158 // Experimental features. |
| 159 extern const char kExperimentalEnableNegotiateAuth[]; | 159 extern const char kExperimentalEnableNegotiateAuth[]; |
| 160 extern const char kExperimentalSpellcheckerFeatures[]; | 160 extern const char kExperimentalSpellcheckerFeatures[]; |
| 161 // End experimental features. | 161 // End experimental features. |
| 162 extern const char kExplicitlyAllowedPorts[]; | 162 extern const char kExplicitlyAllowedPorts[]; |
| 163 extern const char kExtensionProcess[]; | 163 extern const char kExtensionProcess[]; |
| 164 extern const char kExtensionsUpdateFrequency[]; | 164 extern const char kExtensionsUpdateFrequency[]; |
| 165 extern const char kFeedbackServer[]; |
| 165 extern const char kFileDescriptorLimit[]; | 166 extern const char kFileDescriptorLimit[]; |
| 166 extern const char kFirstRun[]; | 167 extern const char kFirstRun[]; |
| 167 extern const char kForceFieldTestNameAndValue[]; | 168 extern const char kForceFieldTestNameAndValue[]; |
| 168 extern const char kGpuLauncher[]; | 169 extern const char kGpuLauncher[]; |
| 169 extern const char kGpuProcess[]; | 170 extern const char kGpuProcess[]; |
| 170 extern const char kGpuStartupDialog[]; | 171 extern const char kGpuStartupDialog[]; |
| 171 extern const char kHelp[]; | 172 extern const char kHelp[]; |
| 172 extern const char kHelpShort[]; | 173 extern const char kHelpShort[]; |
| 173 extern const char kHideIcons[]; | 174 extern const char kHideIcons[]; |
| 174 extern const char kHomePage[]; | 175 extern const char kHomePage[]; |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 #endif | 366 #endif |
| 366 // Return true if the switches indicate the seccomp sandbox is enabled. | 367 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 367 bool SeccompSandboxEnabled(); | 368 bool SeccompSandboxEnabled(); |
| 368 | 369 |
| 369 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 370 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 370 // alphabetical order, or in one of the ifdefs (also in order in each section). | 371 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 371 | 372 |
| 372 } // namespace switches | 373 } // namespace switches |
| 373 | 374 |
| 374 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 375 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |