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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 376 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
377 extern const char kPasswordStore[]; | 377 extern const char kPasswordStore[]; |
378 #endif | 378 #endif |
379 | 379 |
380 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 380 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
381 extern const char kEnableSpeechDispatcher[]; | 381 extern const char kEnableSpeechDispatcher[]; |
382 extern const char kMigrateDataDirForSxS[]; | 382 extern const char kMigrateDataDirForSxS[]; |
383 #endif | 383 #endif |
384 | 384 |
385 #if defined(OS_MACOSX) | 385 #if defined(OS_MACOSX) |
| 386 extern const char kAppsKeepChromeAlive[]; |
386 extern const char kDisableAppShims[]; | 387 extern const char kDisableAppShims[]; |
387 extern const char kDisableSystemFullscreenForTesting[]; | 388 extern const char kDisableSystemFullscreenForTesting[]; |
388 extern const char kEnableSimplifiedFullscreen[]; | 389 extern const char kEnableSimplifiedFullscreen[]; |
389 extern const char kRelauncherProcess[]; | 390 extern const char kRelauncherProcess[]; |
390 #endif | 391 #endif |
391 | 392 |
392 #if defined(OS_WIN) | 393 #if defined(OS_WIN) |
393 extern const char kEnableCloudPrintXps[]; | 394 extern const char kEnableCloudPrintXps[]; |
394 extern const char kEnableProfileShortcutManager[]; | 395 extern const char kEnableProfileShortcutManager[]; |
395 extern const char kForceDesktop[]; | 396 extern const char kForceDesktop[]; |
(...skipping 18 matching lines...) Expand all Loading... |
414 #else | 415 #else |
415 extern const char kEnablePrintPreview[]; | 416 extern const char kEnablePrintPreview[]; |
416 #endif | 417 #endif |
417 | 418 |
418 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 419 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
419 // alphabetical order, or in one of the ifdefs (also in order in each section). | 420 // alphabetical order, or in one of the ifdefs (also in order in each section). |
420 | 421 |
421 } // namespace switches | 422 } // namespace switches |
422 | 423 |
423 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 424 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |