| 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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 extern const char kLoginPassword[]; | 444 extern const char kLoginPassword[]; |
| 445 extern const char kNaturalScrollDefault[]; | 445 extern const char kNaturalScrollDefault[]; |
| 446 extern const char kNoDiscardTabs[]; | 446 extern const char kNoDiscardTabs[]; |
| 447 extern const char kGuestSession[]; | 447 extern const char kGuestSession[]; |
| 448 extern const char kEchoExtensionPath[]; | 448 extern const char kEchoExtensionPath[]; |
| 449 extern const char kStubCrosSettings[]; | 449 extern const char kStubCrosSettings[]; |
| 450 extern const char kAuthExtensionPath[]; | 450 extern const char kAuthExtensionPath[]; |
| 451 extern const char kEnterpriseEnrollmentInitialModulus[]; | 451 extern const char kEnterpriseEnrollmentInitialModulus[]; |
| 452 extern const char kEnterpriseEnrollmentModulusLimit[]; | 452 extern const char kEnterpriseEnrollmentModulusLimit[]; |
| 453 extern const char kFileManagerPackaged[]; | 453 extern const char kFileManagerPackaged[]; |
| 454 extern const char kFileManagerNewUI[]; |
| 454 #ifndef NDEBUG | 455 #ifndef NDEBUG |
| 455 extern const char kOobeSkipPostLogin[]; | 456 extern const char kOobeSkipPostLogin[]; |
| 456 #endif | 457 #endif |
| 457 #endif | 458 #endif |
| 458 | 459 |
| 459 #if defined(OS_POSIX) | 460 #if defined(OS_POSIX) |
| 460 extern const char kEnableCrashReporter[]; | 461 extern const char kEnableCrashReporter[]; |
| 461 extern const char kEnableCrashReporterForTesting[]; | 462 extern const char kEnableCrashReporterForTesting[]; |
| 462 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 463 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 463 extern const char kPasswordStore[]; | 464 extern const char kPasswordStore[]; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 491 #else | 492 #else |
| 492 extern const char kEnablePrintPreview[]; | 493 extern const char kEnablePrintPreview[]; |
| 493 #endif | 494 #endif |
| 494 | 495 |
| 495 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 496 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 496 // alphabetical order, or in one of the ifdefs (also in order in each section). | 497 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 497 | 498 |
| 498 } // namespace switches | 499 } // namespace switches |
| 499 | 500 |
| 500 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 501 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |