| 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 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 extern const char kDisableDrivePrefetch[]; | 388 extern const char kDisableDrivePrefetch[]; |
| 389 extern const char kDisableDrive[]; | 389 extern const char kDisableDrive[]; |
| 390 extern const char kDisableLoginAnimations[]; | 390 extern const char kDisableLoginAnimations[]; |
| 391 extern const char kDisableNewOobe[]; | 391 extern const char kDisableNewOobe[]; |
| 392 extern const char kDisableNewPasswordChangedDialog[]; | 392 extern const char kDisableNewPasswordChangedDialog[]; |
| 393 extern const char kDisableOobeAnimation[]; | 393 extern const char kDisableOobeAnimation[]; |
| 394 extern const char kDisableStubEthernet[]; | 394 extern const char kDisableStubEthernet[]; |
| 395 extern const char kEnableBackgroundLoader[]; | 395 extern const char kEnableBackgroundLoader[]; |
| 396 extern const char kEnableCarrierSwitching[]; | 396 extern const char kEnableCarrierSwitching[]; |
| 397 extern const char kEnableChromeCaptivePortalDetector[]; | 397 extern const char kEnableChromeCaptivePortalDetector[]; |
| 398 extern const char kEnableChromebookFunctionKey[]; | |
| 399 extern const char kEnableTouchpadThreeFingerClick[]; | 398 extern const char kEnableTouchpadThreeFingerClick[]; |
| 400 extern const char kEnableTouchpadThreeFingerSwipe[]; | 399 extern const char kEnableTouchpadThreeFingerSwipe[]; |
| 401 extern const char kSkipOAuthLogin[]; | 400 extern const char kSkipOAuthLogin[]; |
| 402 extern const char kEnableKioskMode[]; | 401 extern const char kEnableKioskMode[]; |
| 403 extern const char kDisableLocalAccounts[]; | 402 extern const char kDisableLocalAccounts[]; |
| 404 extern const char kEnableRequestTabletSite[]; | 403 extern const char kEnableRequestTabletSite[]; |
| 405 extern const char kEnableStaticIPConfig[]; | 404 extern const char kEnableStaticIPConfig[]; |
| 406 extern const char kFirstBoot[]; | 405 extern const char kFirstBoot[]; |
| 407 extern const char kHasChromeOSKeyboard[]; | 406 extern const char kHasChromeOSKeyboard[]; |
| 408 extern const char kKioskModeScreensaverPath[]; | 407 extern const char kKioskModeScreensaverPath[]; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 | 469 |
| 471 namespace chrome { | 470 namespace chrome { |
| 472 | 471 |
| 473 // Returns true if the chrome style dialog is enabled. | 472 // Returns true if the chrome style dialog is enabled. |
| 474 // TODO(sail): Remove this once the feature is fully baked. | 473 // TODO(sail): Remove this once the feature is fully baked. |
| 475 bool UseChromeStyleDialogs(); | 474 bool UseChromeStyleDialogs(); |
| 476 | 475 |
| 477 } // namespace chrome | 476 } // namespace chrome |
| 478 | 477 |
| 479 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 478 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |