| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 extern const char kHostRules[]; | 164 extern const char kHostRules[]; |
| 165 extern const char kIgnoreUrlFetcherCertRequests[]; | 165 extern const char kIgnoreUrlFetcherCertRequests[]; |
| 166 extern const char kIncognito[]; | 166 extern const char kIncognito[]; |
| 167 extern const char kInstallChromeApp[]; | 167 extern const char kInstallChromeApp[]; |
| 168 extern const char kInstallSupervisedUserWhitelists[]; | 168 extern const char kInstallSupervisedUserWhitelists[]; |
| 169 extern const char kInstantProcess[]; | 169 extern const char kInstantProcess[]; |
| 170 extern const char kInterestsURL[]; | 170 extern const char kInterestsURL[]; |
| 171 extern const char kKeepAliveForTest[]; | 171 extern const char kKeepAliveForTest[]; |
| 172 extern const char kKioskMode[]; | 172 extern const char kKioskMode[]; |
| 173 extern const char kKioskModePrinting[]; | 173 extern const char kKioskModePrinting[]; |
| 174 extern const char kLoadComponentExtension[]; | |
| 175 extern const char kLoadExtension[]; | 174 extern const char kLoadExtension[]; |
| 176 extern const char kLoadMediaRouterComponentExtension[]; | 175 extern const char kLoadMediaRouterComponentExtension[]; |
| 177 extern const char kMakeDefaultBrowser[]; | 176 extern const char kMakeDefaultBrowser[]; |
| 178 extern const char kSecurityChip[]; | 177 extern const char kSecurityChip[]; |
| 179 extern const char kSecurityChipShowNonSecureOnly[]; | 178 extern const char kSecurityChipShowNonSecureOnly[]; |
| 180 extern const char kSecurityChipShowAll[]; | 179 extern const char kSecurityChipShowAll[]; |
| 181 extern const char kSecurityChipAnimation[]; | 180 extern const char kSecurityChipAnimation[]; |
| 182 extern const char kSecurityChipAnimationNone[]; | 181 extern const char kSecurityChipAnimationNone[]; |
| 183 extern const char kSecurityChipAnimationNonSecureOnly[]; | 182 extern const char kSecurityChipAnimationNonSecureOnly[]; |
| 184 extern const char kSecurityChipAnimationAll[]; | 183 extern const char kSecurityChipAnimationAll[]; |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 #if defined(OS_WIN) | 395 #if defined(OS_WIN) |
| 397 bool GDITextPrintingEnabled(); | 396 bool GDITextPrintingEnabled(); |
| 398 #endif | 397 #endif |
| 399 | 398 |
| 400 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 399 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 401 // alphabetical order, or in one of the ifdefs (also in order in each section). | 400 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 402 | 401 |
| 403 } // namespace switches | 402 } // namespace switches |
| 404 | 403 |
| 405 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 404 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |