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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 extern const char kDisableLoginAnimations[]; | 384 extern const char kDisableLoginAnimations[]; |
385 extern const char kDisableNewOobe[]; | 385 extern const char kDisableNewOobe[]; |
386 extern const char kDisableNewWallpaperUI[]; | 386 extern const char kDisableNewWallpaperUI[]; |
387 extern const char kDisableOobeAnimation[]; | 387 extern const char kDisableOobeAnimation[]; |
388 extern const char kEnableTouchpadThreeFingerClick[]; | 388 extern const char kEnableTouchpadThreeFingerClick[]; |
389 extern const char kSkipOAuthLogin[]; | 389 extern const char kSkipOAuthLogin[]; |
390 extern const char kEnableDriveV2Api[]; | 390 extern const char kEnableDriveV2Api[]; |
391 extern const char kUseLevelDBForGData[]; | 391 extern const char kUseLevelDBForGData[]; |
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[]; |
| 395 extern const char kEnableRequestTabletSiteEvenIfNonTouchDevice[]; |
394 extern const char kEnableStaticIPConfig[]; | 396 extern const char kEnableStaticIPConfig[]; |
395 extern const char kEnableUnsupportedBluetoothDevices[]; | 397 extern const char kEnableUnsupportedBluetoothDevices[]; |
396 extern const char kFirstBoot[]; | 398 extern const char kFirstBoot[]; |
397 extern const char kKioskModeScreensaverPath[]; | 399 extern const char kKioskModeScreensaverPath[]; |
398 extern const char kLoginManager[]; | 400 extern const char kLoginManager[]; |
399 // TODO(avayvod): Remove this flag when it's unnecessary for testing | 401 // TODO(avayvod): Remove this flag when it's unnecessary for testing |
400 // purposes. | 402 // purposes. |
401 extern const char kLoginScreen[]; | 403 extern const char kLoginScreen[]; |
402 extern const char kLoginScreenSize[]; | 404 extern const char kLoginScreenSize[]; |
403 extern const char kLoginProfile[]; | 405 extern const char kLoginProfile[]; |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
456 #else | 458 #else |
457 extern const char kEnablePrintPreview[]; | 459 extern const char kEnablePrintPreview[]; |
458 #endif | 460 #endif |
459 | 461 |
460 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 462 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
461 // alphabetical order, or in one of the ifdefs (also in order in each section). | 463 // alphabetical order, or in one of the ifdefs (also in order in each section). |
462 | 464 |
463 } // namespace switches | 465 } // namespace switches |
464 | 466 |
465 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 467 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |