| 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 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 extern const char kLoginScreen[]; | 337 extern const char kLoginScreen[]; |
| 338 extern const char kLoginScreenSize[]; | 338 extern const char kLoginScreenSize[]; |
| 339 extern const char kTestLoadLibcros[]; | 339 extern const char kTestLoadLibcros[]; |
| 340 extern const char kLoginProfile[]; | 340 extern const char kLoginProfile[]; |
| 341 extern const char kLoginUser[]; | 341 extern const char kLoginUser[]; |
| 342 extern const char kLoginPassword[]; | 342 extern const char kLoginPassword[]; |
| 343 extern const char kLoginUserWithNewPassword[]; | 343 extern const char kLoginUserWithNewPassword[]; |
| 344 extern const char kParallelAuth[]; | 344 extern const char kParallelAuth[]; |
| 345 extern const char kCandidateWindowLang[]; | 345 extern const char kCandidateWindowLang[]; |
| 346 extern const char kGuestSession[]; | 346 extern const char kGuestSession[]; |
| 347 extern const char kShowVolumeStatus[]; |
| 347 extern const char kStubCros[]; | 348 extern const char kStubCros[]; |
| 348 extern const char kStubCrosSettings[]; | 349 extern const char kStubCrosSettings[]; |
| 349 extern const char kScreenSaverUrl[]; | 350 extern const char kScreenSaverUrl[]; |
| 350 extern const char kCompressSystemFeedback[]; | 351 extern const char kCompressSystemFeedback[]; |
| 351 extern const char kAuthExtensionPath[]; | 352 extern const char kAuthExtensionPath[]; |
| 352 extern const char kEnterpriseEnrollmentInitialModulus[]; | 353 extern const char kEnterpriseEnrollmentInitialModulus[]; |
| 353 extern const char kEnterpriseEnrollmentModulusLimit[]; | 354 extern const char kEnterpriseEnrollmentModulusLimit[]; |
| 354 #ifndef NDEBUG | 355 #ifndef NDEBUG |
| 355 extern const char kOobeSkipPostLogin[]; | 356 extern const char kOobeSkipPostLogin[]; |
| 356 #endif | 357 #endif |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 #if defined(USE_AURA) | 397 #if defined(USE_AURA) |
| 397 extern const char kTestCompositor[]; | 398 extern const char kTestCompositor[]; |
| 398 #endif | 399 #endif |
| 399 | 400 |
| 400 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 401 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 401 // alphabetical order, or in one of the ifdefs (also in order in each section). | 402 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 402 | 403 |
| 403 } // namespace switches | 404 } // namespace switches |
| 404 | 405 |
| 405 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 406 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |