OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 the shared command-line switches used by code in the Chrome | 5 // Defines the shared command-line switches used by code in the Chrome |
6 // directory that don't have anywhere more specific to go. | 6 // directory that don't have anywhere more specific to go. |
7 | 7 |
8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
9 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 9 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
10 | 10 |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 extern const char kForceAppMode[]; | 150 extern const char kForceAppMode[]; |
151 extern const char kForceDesktopIOSPromotion[]; | 151 extern const char kForceDesktopIOSPromotion[]; |
152 extern const char kForceEffectiveConnectionType[]; | 152 extern const char kForceEffectiveConnectionType[]; |
153 extern const char kForceEnableMetricsReporting[]; | 153 extern const char kForceEnableMetricsReporting[]; |
154 extern const char kForceFirstRun[]; | 154 extern const char kForceFirstRun[]; |
155 extern const char kForceLocalNtp[]; | 155 extern const char kForceLocalNtp[]; |
156 extern const char kForceVariationIds[]; | 156 extern const char kForceVariationIds[]; |
157 extern const char kHomePage[]; | 157 extern const char kHomePage[]; |
158 extern const char kHostResolverRetryAttempts[]; | 158 extern const char kHostResolverRetryAttempts[]; |
159 extern const char kHostRules[]; | 159 extern const char kHostRules[]; |
| 160 extern const char kIgnoreCertificateErrorsSPKIList[]; |
160 extern const char kIgnoreUrlFetcherCertRequests[]; | 161 extern const char kIgnoreUrlFetcherCertRequests[]; |
161 extern const char kIncognito[]; | 162 extern const char kIncognito[]; |
162 extern const char kInstallChromeApp[]; | 163 extern const char kInstallChromeApp[]; |
163 extern const char kInstallSupervisedUserWhitelists[]; | 164 extern const char kInstallSupervisedUserWhitelists[]; |
164 extern const char kInstantProcess[]; | 165 extern const char kInstantProcess[]; |
165 extern const char kInterestsURL[]; | 166 extern const char kInterestsURL[]; |
166 extern const char kKeepAliveForTest[]; | 167 extern const char kKeepAliveForTest[]; |
167 extern const char kKioskMode[]; | 168 extern const char kKioskMode[]; |
168 extern const char kKioskModePrinting[]; | 169 extern const char kKioskModePrinting[]; |
169 extern const char kLoadExtension[]; | 170 extern const char kLoadExtension[]; |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
370 #if defined(OS_WIN) | 371 #if defined(OS_WIN) |
371 bool GDITextPrintingEnabled(); | 372 bool GDITextPrintingEnabled(); |
372 #endif | 373 #endif |
373 | 374 |
374 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 375 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
375 // alphabetical order, or in one of the ifdefs (also in order in each section). | 376 // alphabetical order, or in one of the ifdefs (also in order in each section). |
376 | 377 |
377 } // namespace switches | 378 } // namespace switches |
378 | 379 |
379 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 380 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |