| 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 extern const char kLoginManager[]; | 343 extern const char kLoginManager[]; |
| 344 // TODO(avayvod): Remove this flag when it's unnecessary for testing | 344 // TODO(avayvod): Remove this flag when it's unnecessary for testing |
| 345 // purposes. | 345 // purposes. |
| 346 extern const char kLoginScreen[]; | 346 extern const char kLoginScreen[]; |
| 347 extern const char kLoginScreenSize[]; | 347 extern const char kLoginScreenSize[]; |
| 348 extern const char kTestLoadLibcros[]; | 348 extern const char kTestLoadLibcros[]; |
| 349 extern const char kLoginProfile[]; | 349 extern const char kLoginProfile[]; |
| 350 extern const char kLoginUser[]; | 350 extern const char kLoginUser[]; |
| 351 extern const char kLoginPassword[]; | 351 extern const char kLoginPassword[]; |
| 352 extern const char kGuestSession[]; | 352 extern const char kGuestSession[]; |
| 353 extern const char kOffersExtensionPath[]; | 353 extern const char kEchoExtensionPath[]; |
| 354 extern const char kShowVolumeStatus[]; | 354 extern const char kShowVolumeStatus[]; |
| 355 extern const char kStubCros[]; | 355 extern const char kStubCros[]; |
| 356 extern const char kStubCrosSettings[]; | 356 extern const char kStubCrosSettings[]; |
| 357 extern const char kCompressSystemFeedback[]; | 357 extern const char kCompressSystemFeedback[]; |
| 358 extern const char kAuthExtensionPath[]; | 358 extern const char kAuthExtensionPath[]; |
| 359 extern const char kEnterpriseEnrollmentInitialModulus[]; | 359 extern const char kEnterpriseEnrollmentInitialModulus[]; |
| 360 extern const char kEnterpriseEnrollmentModulusLimit[]; | 360 extern const char kEnterpriseEnrollmentModulusLimit[]; |
| 361 #ifndef NDEBUG | 361 #ifndef NDEBUG |
| 362 extern const char kOobeSkipPostLogin[]; | 362 extern const char kOobeSkipPostLogin[]; |
| 363 #endif | 363 #endif |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 #else | 404 #else |
| 405 extern const char kEnablePrintPreview[]; | 405 extern const char kEnablePrintPreview[]; |
| 406 #endif | 406 #endif |
| 407 | 407 |
| 408 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 408 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 409 // alphabetical order, or in one of the ifdefs (also in order in each section). | 409 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 410 | 410 |
| 411 } // namespace switches | 411 } // namespace switches |
| 412 | 412 |
| 413 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 413 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |