| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 extern const char kExtensionsUpdateFrequency[]; | 240 extern const char kExtensionsUpdateFrequency[]; |
| 241 extern const char kExtraSearchQueryParams[]; | 241 extern const char kExtraSearchQueryParams[]; |
| 242 extern const char kFakeVariationsChannel[]; | 242 extern const char kFakeVariationsChannel[]; |
| 243 extern const char kFastStart[]; | 243 extern const char kFastStart[]; |
| 244 extern const char kFlagSwitchesBegin[]; | 244 extern const char kFlagSwitchesBegin[]; |
| 245 extern const char kFlagSwitchesEnd[]; | 245 extern const char kFlagSwitchesEnd[]; |
| 246 extern const char kFeedbackServer[]; | 246 extern const char kFeedbackServer[]; |
| 247 extern const char kFileDescriptorLimit[]; | 247 extern const char kFileDescriptorLimit[]; |
| 248 extern const char kForceAppMode[]; | 248 extern const char kForceAppMode[]; |
| 249 extern const char kForceFirstRun[]; | 249 extern const char kForceFirstRun[]; |
| 250 extern const char kForceSigninPromo[]; |
| 250 extern const char kForceVariationIds[]; | 251 extern const char kForceVariationIds[]; |
| 251 extern const char kForceLoadCloudPolicy[]; | 252 extern const char kForceLoadCloudPolicy[]; |
| 252 extern const char kGoogleBaseURL[]; | 253 extern const char kGoogleBaseURL[]; |
| 253 extern const char kGoogleProfileInfo[]; | 254 extern const char kGoogleProfileInfo[]; |
| 254 extern const char kGoogleSearchDomainCheckURL[]; | 255 extern const char kGoogleSearchDomainCheckURL[]; |
| 255 extern const char kGSSAPILibraryName[]; | 256 extern const char kGSSAPILibraryName[]; |
| 256 extern const char kHelp[]; | 257 extern const char kHelp[]; |
| 257 extern const char kHelpShort[]; | 258 extern const char kHelpShort[]; |
| 258 extern const char kHideIcons[]; | 259 extern const char kHideIcons[]; |
| 259 extern const char kHistoryDisableFullHistorySync[]; | 260 extern const char kHistoryDisableFullHistorySync[]; |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 #else | 480 #else |
| 480 extern const char kEnablePrintPreview[]; | 481 extern const char kEnablePrintPreview[]; |
| 481 #endif | 482 #endif |
| 482 | 483 |
| 483 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 484 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 484 // alphabetical order, or in one of the ifdefs (also in order in each section). | 485 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 485 | 486 |
| 486 } // namespace switches | 487 } // namespace switches |
| 487 | 488 |
| 488 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 489 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |