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 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 extern const char kLoginScreen[]; | 369 extern const char kLoginScreen[]; |
370 extern const char kLoginScreenSize[]; | 370 extern const char kLoginScreenSize[]; |
371 extern const char kTestLoadLibcros[]; | 371 extern const char kTestLoadLibcros[]; |
372 extern const char kLoginProfile[]; | 372 extern const char kLoginProfile[]; |
373 extern const char kLoginUser[]; | 373 extern const char kLoginUser[]; |
374 extern const char kLoginPassword[]; | 374 extern const char kLoginPassword[]; |
375 extern const char kNoDiscardTabs[]; | 375 extern const char kNoDiscardTabs[]; |
376 extern const char kGuestSession[]; | 376 extern const char kGuestSession[]; |
377 extern const char kEchoExtensionPath[]; | 377 extern const char kEchoExtensionPath[]; |
378 extern const char kShowVolumeStatus[]; | 378 extern const char kShowVolumeStatus[]; |
379 extern const char kStubCros[]; | |
380 extern const char kStubCrosSettings[]; | 379 extern const char kStubCrosSettings[]; |
381 extern const char kCompressSystemFeedback[]; | 380 extern const char kCompressSystemFeedback[]; |
382 extern const char kAuthExtensionPath[]; | 381 extern const char kAuthExtensionPath[]; |
383 extern const char kEnterpriseEnrollmentInitialModulus[]; | 382 extern const char kEnterpriseEnrollmentInitialModulus[]; |
384 extern const char kEnterpriseEnrollmentModulusLimit[]; | 383 extern const char kEnterpriseEnrollmentModulusLimit[]; |
385 #ifndef NDEBUG | 384 #ifndef NDEBUG |
386 extern const char kOobeSkipPostLogin[]; | 385 extern const char kOobeSkipPostLogin[]; |
387 #endif | 386 #endif |
388 #endif | 387 #endif |
389 | 388 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 #else | 424 #else |
426 extern const char kEnablePrintPreview[]; | 425 extern const char kEnablePrintPreview[]; |
427 #endif | 426 #endif |
428 | 427 |
429 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 428 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
430 // alphabetical order, or in one of the ifdefs (also in order in each section). | 429 // alphabetical order, or in one of the ifdefs (also in order in each section). |
431 | 430 |
432 } // namespace switches | 431 } // namespace switches |
433 | 432 |
434 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 433 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |