| 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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 extern const char kSilentLaunch[]; | 327 extern const char kSilentLaunch[]; |
| 328 extern const char kSetToken[]; | 328 extern const char kSetToken[]; |
| 329 extern const char kShowAppList[]; | 329 extern const char kShowAppList[]; |
| 330 extern const char kShowComponentExtensionOptions[]; | 330 extern const char kShowComponentExtensionOptions[]; |
| 331 extern const char kShowIcons[]; | 331 extern const char kShowIcons[]; |
| 332 extern const char kSigninProcess[]; | 332 extern const char kSigninProcess[]; |
| 333 extern const char kSilentDumpOnDCHECK[]; | 333 extern const char kSilentDumpOnDCHECK[]; |
| 334 extern const char kSimulateUpgrade[]; | 334 extern const char kSimulateUpgrade[]; |
| 335 extern const char kSimulateCriticalUpdate[]; | 335 extern const char kSimulateCriticalUpdate[]; |
| 336 extern const char kSimulateOutdated[]; | 336 extern const char kSimulateOutdated[]; |
| 337 extern const char kSocketReusePolicy[]; | |
| 338 extern const char kSpeculativeResourcePrefetching[]; | 337 extern const char kSpeculativeResourcePrefetching[]; |
| 339 extern const char kSpeculativeResourcePrefetchingDisabled[]; | 338 extern const char kSpeculativeResourcePrefetchingDisabled[]; |
| 340 extern const char kSpeculativeResourcePrefetchingLearning[]; | 339 extern const char kSpeculativeResourcePrefetchingLearning[]; |
| 341 extern const char kSpdyProxyAuthOrigin[]; | 340 extern const char kSpdyProxyAuthOrigin[]; |
| 342 extern const char kSpeculativeResourcePrefetchingEnabled[]; | 341 extern const char kSpeculativeResourcePrefetchingEnabled[]; |
| 343 extern const char kSSLVersionMax[]; | 342 extern const char kSSLVersionMax[]; |
| 344 extern const char kSSLVersionMin[]; | 343 extern const char kSSLVersionMin[]; |
| 345 extern const char kStartMaximized[]; | 344 extern const char kStartMaximized[]; |
| 346 extern const char kSuggestionNtpFilterWidth[]; | 345 extern const char kSuggestionNtpFilterWidth[]; |
| 347 extern const char kSuggestionNtpGaussianFilter[]; | 346 extern const char kSuggestionNtpGaussianFilter[]; |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 #else | 483 #else |
| 485 extern const char kEnablePrintPreview[]; | 484 extern const char kEnablePrintPreview[]; |
| 486 #endif | 485 #endif |
| 487 | 486 |
| 488 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 487 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 489 // alphabetical order, or in one of the ifdefs (also in order in each section). | 488 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 490 | 489 |
| 491 } // namespace switches | 490 } // namespace switches |
| 492 | 491 |
| 493 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 492 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |