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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 extern const char kEnableExposeForTabs[]; | 428 extern const char kEnableExposeForTabs[]; |
429 extern const char kEnableSimplifiedFullscreen[]; | 429 extern const char kEnableSimplifiedFullscreen[]; |
430 extern const char kKeychainReauthorize[]; | 430 extern const char kKeychainReauthorize[]; |
431 extern const char kRelauncherProcess[]; | 431 extern const char kRelauncherProcess[]; |
432 extern const char kUseMockKeychain[]; | 432 extern const char kUseMockKeychain[]; |
433 #endif | 433 #endif |
434 | 434 |
435 #if defined(OS_WIN) | 435 #if defined(OS_WIN) |
436 extern const char kForceImmersive[]; | 436 extern const char kForceImmersive[]; |
437 extern const char kForceDesktop[]; | 437 extern const char kForceDesktop[]; |
438 extern const char kOverlappedRead[]; | |
439 extern const char kPrintRaster[]; | 438 extern const char kPrintRaster[]; |
440 extern const char kRelaunchShortcut[]; | 439 extern const char kRelaunchShortcut[]; |
441 extern const char kWaitForMutex[]; | 440 extern const char kWaitForMutex[]; |
442 extern const char kWindows8Search[]; | 441 extern const char kWindows8Search[]; |
443 #endif | 442 #endif |
444 | 443 |
445 #if defined(OS_WIN) && defined(USE_AURA) | 444 #if defined(OS_WIN) && defined(USE_AURA) |
446 extern const char kViewerConnect[]; | 445 extern const char kViewerConnect[]; |
447 extern const char kViewerLaunchViaAppId[]; | 446 extern const char kViewerLaunchViaAppId[]; |
448 #endif | 447 #endif |
449 | 448 |
450 #ifndef NDEBUG | 449 #ifndef NDEBUG |
451 extern const char kFileManagerExtensionPath[]; | 450 extern const char kFileManagerExtensionPath[]; |
452 extern const char kImageLoaderExtensionPath[]; | 451 extern const char kImageLoaderExtensionPath[]; |
453 #endif | 452 #endif |
454 | 453 |
455 #if defined(GOOGLE_CHROME_BUILD) | 454 #if defined(GOOGLE_CHROME_BUILD) |
456 extern const char kDisablePrintPreview[]; | 455 extern const char kDisablePrintPreview[]; |
457 #else | 456 #else |
458 extern const char kEnablePrintPreview[]; | 457 extern const char kEnablePrintPreview[]; |
459 #endif | 458 #endif |
460 | 459 |
461 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 460 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
462 // alphabetical order, or in one of the ifdefs (also in order in each section). | 461 // alphabetical order, or in one of the ifdefs (also in order in each section). |
463 | 462 |
464 } // namespace switches | 463 } // namespace switches |
465 | 464 |
466 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 465 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |