| 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 extern const char kNoJsRandomness[]; | 242 extern const char kNoJsRandomness[]; |
| 243 extern const char kNoManaged[]; | 243 extern const char kNoManaged[]; |
| 244 extern const char kNoNetworkProfileWarning[]; | 244 extern const char kNoNetworkProfileWarning[]; |
| 245 extern const char kNoProxyServer[]; | 245 extern const char kNoProxyServer[]; |
| 246 extern const char kNoPings[]; | 246 extern const char kNoPings[]; |
| 247 extern const char kNoServiceAutorun[]; | 247 extern const char kNoServiceAutorun[]; |
| 248 extern const char kNoStartupWindow[]; | 248 extern const char kNoStartupWindow[]; |
| 249 extern const char kNotifyCloudPrintTokenExpired[]; | 249 extern const char kNotifyCloudPrintTokenExpired[]; |
| 250 extern const char kNtpAppInstallHint[]; | 250 extern const char kNtpAppInstallHint[]; |
| 251 extern const char kNumPacThreads[]; | 251 extern const char kNumPacThreads[]; |
| 252 extern const char kOldPanels[]; | |
| 253 extern const char kOmniboxHistoryQuickProviderNewScoring[]; | 252 extern const char kOmniboxHistoryQuickProviderNewScoring[]; |
| 254 extern const char kOmniboxHistoryQuickProviderNewScoringEnabled[]; | 253 extern const char kOmniboxHistoryQuickProviderNewScoringEnabled[]; |
| 255 extern const char kOmniboxHistoryQuickProviderNewScoringDisabled[]; | 254 extern const char kOmniboxHistoryQuickProviderNewScoringDisabled[]; |
| 256 extern const char kOmniboxHistoryQuickProviderReorderForInlining[]; | 255 extern const char kOmniboxHistoryQuickProviderReorderForInlining[]; |
| 257 extern const char kOmniboxHistoryQuickProviderReorderForInliningEnabled[]; | 256 extern const char kOmniboxHistoryQuickProviderReorderForInliningEnabled[]; |
| 258 extern const char kOmniboxHistoryQuickProviderReorderForInliningDisabled[]; | 257 extern const char kOmniboxHistoryQuickProviderReorderForInliningDisabled[]; |
| 259 extern const char kOmniboxInlineHistoryQuickProvider[]; | 258 extern const char kOmniboxInlineHistoryQuickProvider[]; |
| 260 extern const char kOmniboxInlineHistoryQuickProviderAllowed[]; | 259 extern const char kOmniboxInlineHistoryQuickProviderAllowed[]; |
| 261 extern const char kOmniboxInlineHistoryQuickProviderProhibited[]; | 260 extern const char kOmniboxInlineHistoryQuickProviderProhibited[]; |
| 262 extern const char kOnlyBlockSettingThirdPartyCookies[]; | 261 extern const char kOnlyBlockSettingThirdPartyCookies[]; |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 #else | 448 #else |
| 450 extern const char kEnablePrintPreview[]; | 449 extern const char kEnablePrintPreview[]; |
| 451 #endif | 450 #endif |
| 452 | 451 |
| 453 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 452 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 454 // alphabetical order, or in one of the ifdefs (also in order in each section). | 453 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 455 | 454 |
| 456 } // namespace switches | 455 } // namespace switches |
| 457 | 456 |
| 458 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 457 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |