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