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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 extern const char kDisableFactoryReset[]; | 373 extern const char kDisableFactoryReset[]; |
374 extern const char kDisableGData[]; | 374 extern const char kDisableGData[]; |
375 extern const char kDisableHtml5Camera[]; | 375 extern const char kDisableHtml5Camera[]; |
376 extern const char kDisableLoginAnimations[]; | 376 extern const char kDisableLoginAnimations[]; |
377 extern const char kDisableNewOobe[]; | 377 extern const char kDisableNewOobe[]; |
378 extern const char kDisableNewWallpaperUI[]; | 378 extern const char kDisableNewWallpaperUI[]; |
379 extern const char kDisableOobeAnimation[]; | 379 extern const char kDisableOobeAnimation[]; |
380 extern const char kEnableBackgroundLoader[]; | 380 extern const char kEnableBackgroundLoader[]; |
381 extern const char kEnableTouchpadThreeFingerClick[]; | 381 extern const char kEnableTouchpadThreeFingerClick[]; |
382 extern const char kSkipOAuthLogin[]; | 382 extern const char kSkipOAuthLogin[]; |
383 extern const char kUseLevelDBForGData[]; | |
384 extern const char kEnableGView[]; | 383 extern const char kEnableGView[]; |
385 extern const char kEnableKioskMode[]; | 384 extern const char kEnableKioskMode[]; |
386 extern const char kEnableRequestTabletSite[]; | 385 extern const char kEnableRequestTabletSite[]; |
387 extern const char kEnableStaticIPConfig[]; | 386 extern const char kEnableStaticIPConfig[]; |
388 extern const char kEnableUnsupportedBluetoothDevices[]; | 387 extern const char kEnableUnsupportedBluetoothDevices[]; |
389 extern const char kFirstBoot[]; | 388 extern const char kFirstBoot[]; |
390 extern const char kKioskModeScreensaverPath[]; | 389 extern const char kKioskModeScreensaverPath[]; |
391 extern const char kLoginManager[]; | 390 extern const char kLoginManager[]; |
392 // TODO(avayvod): Remove this flag when it's unnecessary for testing | 391 // TODO(avayvod): Remove this flag when it's unnecessary for testing |
393 // purposes. | 392 // purposes. |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 #else | 450 #else |
452 extern const char kEnablePrintPreview[]; | 451 extern const char kEnablePrintPreview[]; |
453 #endif | 452 #endif |
454 | 453 |
455 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 454 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
456 // alphabetical order, or in one of the ifdefs (also in order in each section). | 455 // alphabetical order, or in one of the ifdefs (also in order in each section). |
457 | 456 |
458 } // namespace switches | 457 } // namespace switches |
459 | 458 |
460 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 459 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |