| 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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 extern const char kSbDisableDownloadProtection[]; | 303 extern const char kSbDisableDownloadProtection[]; |
| 304 extern const char kSbDisableExtensionBlacklist[]; | 304 extern const char kSbDisableExtensionBlacklist[]; |
| 305 extern const char kSbDisableSideEffectFreeWhitelist[]; | 305 extern const char kSbDisableSideEffectFreeWhitelist[]; |
| 306 extern const char kServiceProcess[]; | 306 extern const char kServiceProcess[]; |
| 307 extern const char kSilentDebuggerExtensionAPI[]; | 307 extern const char kSilentDebuggerExtensionAPI[]; |
| 308 extern const char kSilentLaunch[]; | 308 extern const char kSilentLaunch[]; |
| 309 extern const char kSetToken[]; | 309 extern const char kSetToken[]; |
| 310 extern const char kShowAppList[]; | 310 extern const char kShowAppList[]; |
| 311 extern const char kShowIcons[]; | 311 extern const char kShowIcons[]; |
| 312 extern const char kSigninProcess[]; | 312 extern const char kSigninProcess[]; |
| 313 extern const char kSimulateUpgrade[]; | 313 extern const char kSimulateElevatedRecovery[]; |
| 314 extern const char kSimulateCriticalUpdate[]; | 314 extern const char kSimulateCriticalUpdate[]; |
| 315 extern const char kSimulateOutdated[]; | 315 extern const char kSimulateOutdated[]; |
| 316 extern const char kSimulateOutdatedNoAU[]; | 316 extern const char kSimulateOutdatedNoAU[]; |
| 317 extern const char kSimulateUpgrade[]; |
| 317 extern const char kSpellingServiceFeedbackUrl[]; | 318 extern const char kSpellingServiceFeedbackUrl[]; |
| 318 extern const char kSpellingServiceFeedbackIntervalSeconds[]; | 319 extern const char kSpellingServiceFeedbackIntervalSeconds[]; |
| 319 extern const char kSSLInterstitialV1[]; | 320 extern const char kSSLInterstitialV1[]; |
| 320 extern const char kSSLInterstitialV2[]; | 321 extern const char kSSLInterstitialV2[]; |
| 321 extern const char kSSLInterstitialV1WithV2Text[]; | 322 extern const char kSSLInterstitialV1WithV2Text[]; |
| 322 extern const char kSSLInterstitialV2Yellow[]; | 323 extern const char kSSLInterstitialV2Yellow[]; |
| 323 extern const char kSSLInterstitialV2Guard[]; | 324 extern const char kSSLInterstitialV2Guard[]; |
| 324 extern const char kSSLVersionMax[]; | 325 extern const char kSSLVersionMax[]; |
| 325 extern const char kSSLVersionMin[]; | 326 extern const char kSSLVersionMin[]; |
| 326 extern const char kStartMaximized[]; | 327 extern const char kStartMaximized[]; |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 #endif | 413 #endif |
| 413 | 414 |
| 414 bool SettingsWindowEnabled(); | 415 bool SettingsWindowEnabled(); |
| 415 | 416 |
| 416 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 417 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 417 // alphabetical order, or in one of the ifdefs (also in order in each section). | 418 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 418 | 419 |
| 419 } // namespace switches | 420 } // namespace switches |
| 420 | 421 |
| 421 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 422 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |