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