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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
395 extern const char kKioskModeScreensaverPath[]; | 395 extern const char kKioskModeScreensaverPath[]; |
396 extern const char kLoginManager[]; | 396 extern const char kLoginManager[]; |
397 // TODO(avayvod): Remove this flag when it's unnecessary for testing | 397 // TODO(avayvod): Remove this flag when it's unnecessary for testing |
398 // purposes. | 398 // purposes. |
399 extern const char kLoginScreen[]; | 399 extern const char kLoginScreen[]; |
400 extern const char kLoginScreenSize[]; | 400 extern const char kLoginScreenSize[]; |
401 extern const char kLoginProfile[]; | 401 extern const char kLoginProfile[]; |
402 extern const char kLoginUser[]; | 402 extern const char kLoginUser[]; |
403 extern const char kLoginPassword[]; | 403 extern const char kLoginPassword[]; |
404 extern const char kNaturalScrollDefault[]; | 404 extern const char kNaturalScrollDefault[]; |
405 extern const char kHasChromeOSKeyboard[]; | |
Daniel Erat
2012/10/30 18:23:17
nit: keep this list alphabetized
Yusuke Sato
2012/10/30 19:27:23
Done.
| |
405 extern const char kNoDiscardTabs[]; | 406 extern const char kNoDiscardTabs[]; |
406 extern const char kGuestSession[]; | 407 extern const char kGuestSession[]; |
407 extern const char kEchoExtensionPath[]; | 408 extern const char kEchoExtensionPath[]; |
408 extern const char kStubCrosSettings[]; | 409 extern const char kStubCrosSettings[]; |
409 extern const char kAuthExtensionPath[]; | 410 extern const char kAuthExtensionPath[]; |
410 extern const char kEnterpriseEnrollmentInitialModulus[]; | 411 extern const char kEnterpriseEnrollmentInitialModulus[]; |
411 extern const char kEnterpriseEnrollmentModulusLimit[]; | 412 extern const char kEnterpriseEnrollmentModulusLimit[]; |
412 #ifndef NDEBUG | 413 #ifndef NDEBUG |
413 extern const char kOobeSkipPostLogin[]; | 414 extern const char kOobeSkipPostLogin[]; |
414 #endif | 415 #endif |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
456 | 457 |
457 namespace chrome { | 458 namespace chrome { |
458 | 459 |
459 // Returns true if the new frameless constrained window style is enabled. | 460 // Returns true if the new frameless constrained window style is enabled. |
460 // TODO(sail): Remove this once the feature is fully baked. | 461 // TODO(sail): Remove this once the feature is fully baked. |
461 bool IsFramelessConstrainedDialogEnabled(); | 462 bool IsFramelessConstrainedDialogEnabled(); |
462 | 463 |
463 } // namespace chrome | 464 } // namespace chrome |
464 | 465 |
465 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 466 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |