| 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 // Constants for the names of various preferences, for easier changing. | 5 // Constants for the names of various preferences, for easier changing. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ | 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ |
| 8 #define CHROME_COMMON_PREF_NAMES_H_ | 8 #define CHROME_COMMON_PREF_NAMES_H_ |
| 9 | 9 |
| 10 #include <stddef.h> | 10 #include <stddef.h> |
| (...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 650 extern const char kTabStripStackedLayout[]; | 650 extern const char kTabStripStackedLayout[]; |
| 651 | 651 |
| 652 extern const char kRegisteredBackgroundContents[]; | 652 extern const char kRegisteredBackgroundContents[]; |
| 653 | 653 |
| 654 #if defined(OS_WIN) | 654 #if defined(OS_WIN) |
| 655 extern const char kLastWelcomedOSVersion[]; | 655 extern const char kLastWelcomedOSVersion[]; |
| 656 extern const char kShownAutoLaunchInfobar[]; | 656 extern const char kShownAutoLaunchInfobar[]; |
| 657 extern const char kWelcomePageOnOSUpgradeEnabled[]; | 657 extern const char kWelcomePageOnOSUpgradeEnabled[]; |
| 658 #endif | 658 #endif |
| 659 | 659 |
| 660 extern const char kAuthSchemes[]; | |
| 661 extern const char kDisableAuthNegotiateCnameLookup[]; | |
| 662 extern const char kEnableAuthNegotiatePort[]; | |
| 663 extern const char kAuthServerWhitelist[]; | |
| 664 extern const char kAuthNegotiateDelegateWhitelist[]; | |
| 665 extern const char kGSSAPILibraryName[]; | |
| 666 extern const char kAuthAndroidNegotiateAccountType[]; | |
| 667 extern const char kAllowCrossOriginAuthPrompt[]; | 660 extern const char kAllowCrossOriginAuthPrompt[]; |
| 668 | 661 |
| 669 extern const char kBuiltInDnsClientEnabled[]; | 662 extern const char kBuiltInDnsClientEnabled[]; |
| 670 | 663 |
| 671 extern const char kRegisteredProtocolHandlers[]; | 664 extern const char kRegisteredProtocolHandlers[]; |
| 672 extern const char kIgnoredProtocolHandlers[]; | 665 extern const char kIgnoredProtocolHandlers[]; |
| 673 extern const char kPolicyRegisteredProtocolHandlers[]; | 666 extern const char kPolicyRegisteredProtocolHandlers[]; |
| 674 extern const char kPolicyIgnoredProtocolHandlers[]; | 667 extern const char kPolicyIgnoredProtocolHandlers[]; |
| 675 extern const char kCustomHandlersEnabled[]; | 668 extern const char kCustomHandlersEnabled[]; |
| 676 | 669 |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 792 extern const char kAnimationPolicy[]; | 785 extern const char kAnimationPolicy[]; |
| 793 #endif | 786 #endif |
| 794 | 787 |
| 795 extern const char kBackgroundTracingLastUpload[]; | 788 extern const char kBackgroundTracingLastUpload[]; |
| 796 | 789 |
| 797 extern const char kAllowDinosaurEasterEgg[]; | 790 extern const char kAllowDinosaurEasterEgg[]; |
| 798 | 791 |
| 799 } // namespace prefs | 792 } // namespace prefs |
| 800 | 793 |
| 801 #endif // CHROME_COMMON_PREF_NAMES_H_ | 794 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |