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 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 406 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
407 extern const char kPasswordStore[]; | 407 extern const char kPasswordStore[]; |
408 #endif | 408 #endif |
409 | 409 |
410 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 410 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
411 extern const char kEnableSpeechDispatcher[]; | 411 extern const char kEnableSpeechDispatcher[]; |
412 extern const char kMigrateDataDirForSxS[]; | 412 extern const char kMigrateDataDirForSxS[]; |
413 #endif | 413 #endif |
414 | 414 |
415 #if defined(OS_MACOSX) | 415 #if defined(OS_MACOSX) |
| 416 extern const char kAppsKeepChromeAlive[]; |
416 extern const char kDisableAppShims[]; | 417 extern const char kDisableAppShims[]; |
417 extern const char kDisableSystemFullscreenForTesting[]; | 418 extern const char kDisableSystemFullscreenForTesting[]; |
418 extern const char kEnableSimplifiedFullscreen[]; | 419 extern const char kEnableSimplifiedFullscreen[]; |
419 extern const char kRelauncherProcess[]; | 420 extern const char kRelauncherProcess[]; |
420 #endif | 421 #endif |
421 | 422 |
422 #if defined(OS_WIN) | 423 #if defined(OS_WIN) |
423 extern const char kEnableCloudPrintXps[]; | 424 extern const char kEnableCloudPrintXps[]; |
424 extern const char kEnableProfileShortcutManager[]; | 425 extern const char kEnableProfileShortcutManager[]; |
425 extern const char kForceDesktop[]; | 426 extern const char kForceDesktop[]; |
(...skipping 19 matching lines...) Expand all Loading... |
445 #else | 446 #else |
446 extern const char kEnablePrintPreview[]; | 447 extern const char kEnablePrintPreview[]; |
447 #endif | 448 #endif |
448 | 449 |
449 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 450 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
450 // alphabetical order, or in one of the ifdefs (also in order in each section). | 451 // alphabetical order, or in one of the ifdefs (also in order in each section). |
451 | 452 |
452 } // namespace switches | 453 } // namespace switches |
453 | 454 |
454 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 455 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |