| 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 #endif | 395 #endif |
| 396 | 396 |
| 397 #if defined(OS_CHROMEOS) | 397 #if defined(OS_CHROMEOS) |
| 398 // Keep switches in alphabetical order. | 398 // Keep switches in alphabetical order. |
| 399 extern const char kAshWebUIInit[]; | 399 extern const char kAshWebUIInit[]; |
| 400 extern const char kDisableBootAnimation[]; | 400 extern const char kDisableBootAnimation[]; |
| 401 extern const char kDisableChromeCaptivePortalDetector[]; | 401 extern const char kDisableChromeCaptivePortalDetector[]; |
| 402 extern const char kDisableDrive[]; | 402 extern const char kDisableDrive[]; |
| 403 extern const char kDisableLoginAnimations[]; | 403 extern const char kDisableLoginAnimations[]; |
| 404 extern const char kDisableOobeAnimation[]; | 404 extern const char kDisableOobeAnimation[]; |
| 405 extern const char kDisableStubEthernet[]; | |
| 406 extern const char kEnableAppMode[]; | 405 extern const char kEnableAppMode[]; |
| 407 extern const char kEnableStubInteractive[]; | |
| 408 extern const char kEnableBackgroundLoader[]; | 406 extern const char kEnableBackgroundLoader[]; |
| 409 extern const char kEnableCarrierSwitching[]; | 407 extern const char kEnableCarrierSwitching[]; |
| 410 extern const char kEnableChromeCaptivePortalDetector[]; | 408 extern const char kEnableChromeCaptivePortalDetector[]; |
| 411 extern const char kEnableDriveMetadataPrefetch[]; | 409 extern const char kEnableDriveMetadataPrefetch[]; |
| 412 extern const char kEnableDrivePrefetch[]; | 410 extern const char kEnableDrivePrefetch[]; |
| 413 extern const char kEnableTouchpadThreeFingerClick[]; | 411 extern const char kEnableTouchpadThreeFingerClick[]; |
| 414 extern const char kEnableTouchpadThreeFingerSwipe[]; | 412 extern const char kEnableTouchpadThreeFingerSwipe[]; |
| 415 extern const char kEnableKioskMode[]; | 413 extern const char kEnableKioskMode[]; |
| 416 extern const char kDisableLocalAccounts[]; | 414 extern const char kDisableLocalAccounts[]; |
| 417 extern const char kEnableRequestTabletSite[]; | 415 extern const char kEnableRequestTabletSite[]; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 #else | 477 #else |
| 480 extern const char kEnablePrintPreview[]; | 478 extern const char kEnablePrintPreview[]; |
| 481 #endif | 479 #endif |
| 482 | 480 |
| 483 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 481 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 484 // alphabetical order, or in one of the ifdefs (also in order in each section). | 482 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 485 | 483 |
| 486 } // namespace switches | 484 } // namespace switches |
| 487 | 485 |
| 488 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 486 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |