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