| 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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 extern const char kEnableBackgroundLoader[]; | 387 extern const char kEnableBackgroundLoader[]; |
| 388 extern const char kEnableChromeCaptivePortalDetector[]; | 388 extern const char kEnableChromeCaptivePortalDetector[]; |
| 389 extern const char kEnableTouchpadThreeFingerClick[]; | 389 extern const char kEnableTouchpadThreeFingerClick[]; |
| 390 extern const char kEnableTouchpadThreeFingerSwipe[]; | 390 extern const char kEnableTouchpadThreeFingerSwipe[]; |
| 391 extern const char kSkipOAuthLogin[]; | 391 extern const char kSkipOAuthLogin[]; |
| 392 extern const char kEnableGView[]; | 392 extern const char kEnableGView[]; |
| 393 extern const char kEnableKioskMode[]; | 393 extern const char kEnableKioskMode[]; |
| 394 extern const char kEnableRequestTabletSite[]; | 394 extern const char kEnableRequestTabletSite[]; |
| 395 extern const char kEnableStaticIPConfig[]; | 395 extern const char kEnableStaticIPConfig[]; |
| 396 extern const char kFirstBoot[]; | 396 extern const char kFirstBoot[]; |
| 397 extern const char kHasChromeOSKeyboard[]; |
| 397 extern const char kKioskModeScreensaverPath[]; | 398 extern const char kKioskModeScreensaverPath[]; |
| 398 extern const char kLoginManager[]; | 399 extern const char kLoginManager[]; |
| 399 // TODO(avayvod): Remove this flag when it's unnecessary for testing | 400 // TODO(avayvod): Remove this flag when it's unnecessary for testing |
| 400 // purposes. | 401 // purposes. |
| 401 extern const char kLoginScreen[]; | 402 extern const char kLoginScreen[]; |
| 402 extern const char kLoginScreenSize[]; | 403 extern const char kLoginScreenSize[]; |
| 403 extern const char kLoginProfile[]; | 404 extern const char kLoginProfile[]; |
| 404 extern const char kLoginUser[]; | 405 extern const char kLoginUser[]; |
| 405 extern const char kLoginPassword[]; | 406 extern const char kLoginPassword[]; |
| 406 extern const char kNaturalScrollDefault[]; | 407 extern const char kNaturalScrollDefault[]; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 | 460 |
| 460 namespace chrome { | 461 namespace chrome { |
| 461 | 462 |
| 462 // Returns true if the new frameless constrained window style is enabled. | 463 // Returns true if the new frameless constrained window style is enabled. |
| 463 // TODO(sail): Remove this once the feature is fully baked. | 464 // TODO(sail): Remove this once the feature is fully baked. |
| 464 bool IsFramelessConstrainedDialogEnabled(); | 465 bool IsFramelessConstrainedDialogEnabled(); |
| 465 | 466 |
| 466 } // namespace chrome | 467 } // namespace chrome |
| 467 | 468 |
| 468 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 469 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |