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 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
414 | 414 |
415 #if defined(OS_MACOSX) | 415 #if defined(OS_MACOSX) |
416 extern const char kEnableExposeForTabs[]; | 416 extern const char kEnableExposeForTabs[]; |
417 extern const char kKeychainReauthorize[]; | 417 extern const char kKeychainReauthorize[]; |
418 extern const char kRelauncherProcess[]; | 418 extern const char kRelauncherProcess[]; |
419 extern const char kUseMockKeychain[]; | 419 extern const char kUseMockKeychain[]; |
420 #endif | 420 #endif |
421 | 421 |
422 #if defined(OS_WIN) | 422 #if defined(OS_WIN) |
423 extern const char kDisableDesktopShortcuts[]; | 423 extern const char kDisableDesktopShortcuts[]; |
424 extern const char kDisableWebsiteSettings[]; | |
425 extern const char kEnableSyncCredentialCaching[]; | 424 extern const char kEnableSyncCredentialCaching[]; |
426 extern const char kForceImmersive[]; | 425 extern const char kForceImmersive[]; |
427 extern const char kRelaunchShortcut[]; | 426 extern const char kRelaunchShortcut[]; |
428 extern const char kWaitForHandle[]; | 427 extern const char kWaitForHandle[]; |
429 #endif | 428 #endif |
430 | 429 |
431 #if defined(USE_AURA) | 430 #if defined(USE_AURA) |
432 extern const char kDisableTCVA[]; | 431 extern const char kDisableTCVA[]; |
433 extern const char kOpenAsh[]; | 432 extern const char kOpenAsh[]; |
434 #endif | 433 #endif |
435 | 434 |
436 #ifndef NDEBUG | 435 #ifndef NDEBUG |
437 extern const char kFileManagerExtensionPath[]; | 436 extern const char kFileManagerExtensionPath[]; |
438 extern const char kDumpProfileDependencyGraph[]; | 437 extern const char kDumpProfileDependencyGraph[]; |
439 #endif | 438 #endif |
440 | 439 |
441 #if defined(GOOGLE_CHROME_BUILD) | 440 #if defined(GOOGLE_CHROME_BUILD) |
442 extern const char kDisablePrintPreview[]; | 441 extern const char kDisablePrintPreview[]; |
443 #else | 442 #else |
444 extern const char kEnablePrintPreview[]; | 443 extern const char kEnablePrintPreview[]; |
445 #endif | 444 #endif |
446 | 445 |
447 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 446 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
448 // alphabetical order, or in one of the ifdefs (also in order in each section). | 447 // alphabetical order, or in one of the ifdefs (also in order in each section). |
449 | 448 |
450 } // namespace switches | 449 } // namespace switches |
451 | 450 |
452 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 451 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |