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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 extern const char kExtensionsUpdateFrequency[]; | 210 extern const char kExtensionsUpdateFrequency[]; |
211 extern const char kFakeVariationsChannel[]; | 211 extern const char kFakeVariationsChannel[]; |
212 extern const char kFlagSwitchesBegin[]; | 212 extern const char kFlagSwitchesBegin[]; |
213 extern const char kFlagSwitchesEnd[]; | 213 extern const char kFlagSwitchesEnd[]; |
214 extern const char kFeedbackServer[]; | 214 extern const char kFeedbackServer[]; |
215 extern const char kFileDescriptorLimit[]; | 215 extern const char kFileDescriptorLimit[]; |
216 extern const char kForceAppMode[]; | 216 extern const char kForceAppMode[]; |
217 extern const char kForceFirstRun[]; | 217 extern const char kForceFirstRun[]; |
218 extern const char kForceLoadCloudPolicy[]; | 218 extern const char kForceLoadCloudPolicy[]; |
219 extern const char kGaiaProfileInfo[]; | 219 extern const char kGaiaProfileInfo[]; |
220 extern const char kGoogleBaseSuggestURL[]; | |
221 extern const char kGoogleSearchDomainCheckURL[]; | 220 extern const char kGoogleSearchDomainCheckURL[]; |
222 extern const char kGSSAPILibraryName[]; | 221 extern const char kGSSAPILibraryName[]; |
223 extern const char kHelp[]; | 222 extern const char kHelp[]; |
224 extern const char kHelpShort[]; | 223 extern const char kHelpShort[]; |
225 extern const char kHideIcons[]; | 224 extern const char kHideIcons[]; |
226 extern const char kHistoryDisableFullHistorySync[]; | 225 extern const char kHistoryDisableFullHistorySync[]; |
227 extern const char kHistoryEnableGroupByDomain[]; | 226 extern const char kHistoryEnableGroupByDomain[]; |
228 extern const char kHistoryWebHistoryUrl[]; | 227 extern const char kHistoryWebHistoryUrl[]; |
229 extern const char kHomePage[]; | 228 extern const char kHomePage[]; |
230 extern const char kHostRules[]; | 229 extern const char kHostRules[]; |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 #else | 454 #else |
456 extern const char kEnablePrintPreview[]; | 455 extern const char kEnablePrintPreview[]; |
457 #endif | 456 #endif |
458 | 457 |
459 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 458 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
460 // alphabetical order, or in one of the ifdefs (also in order in each section). | 459 // alphabetical order, or in one of the ifdefs (also in order in each section). |
461 | 460 |
462 } // namespace switches | 461 } // namespace switches |
463 | 462 |
464 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 463 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |