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