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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
442 #endif | 442 #endif |
443 | 443 |
444 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 444 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
445 extern const char kMigrateDataDirForSxS[]; | 445 extern const char kMigrateDataDirForSxS[]; |
446 #endif | 446 #endif |
447 | 447 |
448 #if defined(OS_MACOSX) | 448 #if defined(OS_MACOSX) |
449 extern const char kDisableAppShims[]; | 449 extern const char kDisableAppShims[]; |
450 extern const char kDisableCoreAnimationLayerSquashing[]; | 450 extern const char kDisableCoreAnimationLayerSquashing[]; |
451 extern const char kDisableSystemFullscreenForTesting[]; | 451 extern const char kDisableSystemFullscreenForTesting[]; |
452 extern const char kEnableExposeForTabs[]; | |
453 extern const char kEnableSimplifiedFullscreen[]; | 452 extern const char kEnableSimplifiedFullscreen[]; |
454 extern const char kKeychainReauthorize[]; | 453 extern const char kKeychainReauthorize[]; |
455 extern const char kRelauncherProcess[]; | 454 extern const char kRelauncherProcess[]; |
456 extern const char kUseMockKeychain[]; | 455 extern const char kUseMockKeychain[]; |
457 #endif | 456 #endif |
458 | 457 |
459 #if defined(OS_WIN) | 458 #if defined(OS_WIN) |
460 extern const char kEnableProfileShortcutManager[]; | 459 extern const char kEnableProfileShortcutManager[]; |
461 extern const char kForceImmersive[]; | 460 extern const char kForceImmersive[]; |
462 extern const char kForceDesktop[]; | 461 extern const char kForceDesktop[]; |
(...skipping 15 matching lines...) Expand all Loading... |
478 #else | 477 #else |
479 extern const char kEnablePrintPreview[]; | 478 extern const char kEnablePrintPreview[]; |
480 #endif | 479 #endif |
481 | 480 |
482 // 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 |
483 // 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). |
484 | 483 |
485 } // namespace switches | 484 } // namespace switches |
486 | 485 |
487 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 486 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |