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