| 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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 #endif | 441 #endif |
| 442 | 442 |
| 443 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 443 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 444 extern const char kMigrateDataDirForSxS[]; | 444 extern const char kMigrateDataDirForSxS[]; |
| 445 #endif | 445 #endif |
| 446 | 446 |
| 447 #if defined(OS_MACOSX) | 447 #if defined(OS_MACOSX) |
| 448 extern const char kDisableAppShims[]; | 448 extern const char kDisableAppShims[]; |
| 449 extern const char kDisableCoreAnimationLayerSquashing[]; | 449 extern const char kDisableCoreAnimationLayerSquashing[]; |
| 450 extern const char kDisableSystemFullscreenForTesting[]; | 450 extern const char kDisableSystemFullscreenForTesting[]; |
| 451 extern const char kEnableExposeForTabs[]; | |
| 452 extern const char kEnableSimplifiedFullscreen[]; | 451 extern const char kEnableSimplifiedFullscreen[]; |
| 453 extern const char kKeychainReauthorize[]; | 452 extern const char kKeychainReauthorize[]; |
| 454 extern const char kRelauncherProcess[]; | 453 extern const char kRelauncherProcess[]; |
| 455 extern const char kUseMockKeychain[]; | 454 extern const char kUseMockKeychain[]; |
| 456 #endif | 455 #endif |
| 457 | 456 |
| 458 #if defined(OS_WIN) | 457 #if defined(OS_WIN) |
| 459 extern const char kEnableProfileShortcutManager[]; | 458 extern const char kEnableProfileShortcutManager[]; |
| 460 extern const char kForceImmersive[]; | 459 extern const char kForceImmersive[]; |
| 461 extern const char kForceDesktop[]; | 460 extern const char kForceDesktop[]; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 477 #else | 476 #else |
| 478 extern const char kEnablePrintPreview[]; | 477 extern const char kEnablePrintPreview[]; |
| 479 #endif | 478 #endif |
| 480 | 479 |
| 481 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 480 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 482 // alphabetical order, or in one of the ifdefs (also in order in each section). | 481 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 483 | 482 |
| 484 } // namespace switches | 483 } // namespace switches |
| 485 | 484 |
| 486 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 485 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |