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