| 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 extern const char kSbDisableDownloadProtection[]; | 297 extern const char kSbDisableDownloadProtection[]; |
| 298 extern const char kSbDisableExtensionBlacklist[]; | 298 extern const char kSbDisableExtensionBlacklist[]; |
| 299 extern const char kSbDisableSideEffectFreeWhitelist[]; | 299 extern const char kSbDisableSideEffectFreeWhitelist[]; |
| 300 extern const char kServiceProcess[]; | 300 extern const char kServiceProcess[]; |
| 301 extern const char kSilentDebuggerExtensionAPI[]; | 301 extern const char kSilentDebuggerExtensionAPI[]; |
| 302 extern const char kSilentLaunch[]; | 302 extern const char kSilentLaunch[]; |
| 303 extern const char kSetToken[]; | 303 extern const char kSetToken[]; |
| 304 extern const char kShowAppList[]; | 304 extern const char kShowAppList[]; |
| 305 extern const char kShowIcons[]; | 305 extern const char kShowIcons[]; |
| 306 extern const char kSigninProcess[]; | 306 extern const char kSigninProcess[]; |
| 307 extern const char kSilentDumpOnDCHECK[]; | |
| 308 extern const char kSimulateUpgrade[]; | 307 extern const char kSimulateUpgrade[]; |
| 309 extern const char kSimulateCriticalUpdate[]; | 308 extern const char kSimulateCriticalUpdate[]; |
| 310 extern const char kSimulateOutdated[]; | 309 extern const char kSimulateOutdated[]; |
| 311 extern const char kSimulateOutdatedNoAU[]; | 310 extern const char kSimulateOutdatedNoAU[]; |
| 312 extern const char kSpellingServiceFeedbackUrl[]; | 311 extern const char kSpellingServiceFeedbackUrl[]; |
| 313 extern const char kSpellingServiceFeedbackIntervalSeconds[]; | 312 extern const char kSpellingServiceFeedbackIntervalSeconds[]; |
| 314 extern const char kSSLInterstitialVersionV1[]; | 313 extern const char kSSLInterstitialVersionV1[]; |
| 315 extern const char kSSLInterstitialVersionV2Gray[]; | 314 extern const char kSSLInterstitialVersionV2Gray[]; |
| 316 extern const char kSSLInterstitialVersionV2Colorful[]; | 315 extern const char kSSLInterstitialVersionV2Colorful[]; |
| 317 extern const char kSSLVersionMax[]; | 316 extern const char kSSLVersionMax[]; |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 #endif | 406 #endif |
| 408 | 407 |
| 409 bool SettingsWindowEnabled(); | 408 bool SettingsWindowEnabled(); |
| 410 | 409 |
| 411 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 410 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 412 // alphabetical order, or in one of the ifdefs (also in order in each section). | 411 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 413 | 412 |
| 414 } // namespace switches | 413 } // namespace switches |
| 415 | 414 |
| 416 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 415 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |