| 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 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 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 extern const char kHelpShort[]; | 207 extern const char kHelpShort[]; |
| 208 extern const char kHideIcons[]; | 208 extern const char kHideIcons[]; |
| 209 extern const char kHistoryDisableFullHistorySync[]; | 209 extern const char kHistoryDisableFullHistorySync[]; |
| 210 extern const char kHistoryEnableFullHistorySync[]; | 210 extern const char kHistoryEnableFullHistorySync[]; |
| 211 extern const char kHistoryEnableGroupByDomain[]; | 211 extern const char kHistoryEnableGroupByDomain[]; |
| 212 extern const char kHistoryWebHistoryUrl[]; | 212 extern const char kHistoryWebHistoryUrl[]; |
| 213 extern const char kHomePage[]; | 213 extern const char kHomePage[]; |
| 214 extern const char kHostRules[]; | 214 extern const char kHostRules[]; |
| 215 extern const char kHostResolverParallelism[]; | 215 extern const char kHostResolverParallelism[]; |
| 216 extern const char kHostResolverRetryAttempts[]; | 216 extern const char kHostResolverRetryAttempts[]; |
| 217 extern const char kHstsHosts[]; | |
| 218 extern const char kIgnoreUrlFetcherCertRequests[]; | 217 extern const char kIgnoreUrlFetcherCertRequests[]; |
| 219 extern const char kImport[]; | 218 extern const char kImport[]; |
| 220 extern const char kImportFromFile[]; | 219 extern const char kImportFromFile[]; |
| 221 extern const char kIncognito[]; | 220 extern const char kIncognito[]; |
| 222 extern const char kInstallFromWebstore[]; | 221 extern const char kInstallFromWebstore[]; |
| 223 extern const char kInstantProcess[]; | 222 extern const char kInstantProcess[]; |
| 224 extern const char kInstantURL[]; | 223 extern const char kInstantURL[]; |
| 225 extern const char kKeepAliveForTest[]; | 224 extern const char kKeepAliveForTest[]; |
| 226 extern const char kKioskMode[]; | 225 extern const char kKioskMode[]; |
| 227 extern const char kKioskModePrinting[]; | 226 extern const char kKioskModePrinting[]; |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 #else | 479 #else |
| 481 extern const char kEnablePrintPreview[]; | 480 extern const char kEnablePrintPreview[]; |
| 482 #endif | 481 #endif |
| 483 | 482 |
| 484 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 483 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 485 // alphabetical order, or in one of the ifdefs (also in order in each section). | 484 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 486 | 485 |
| 487 } // namespace switches | 486 } // namespace switches |
| 488 | 487 |
| 489 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 488 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |