| 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 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 extern const char kEnableAuthNegotiatePort[]; | 739 extern const char kEnableAuthNegotiatePort[]; |
| 740 extern const char kAuthServerWhitelist[]; | 740 extern const char kAuthServerWhitelist[]; |
| 741 extern const char kAuthNegotiateDelegateWhitelist[]; | 741 extern const char kAuthNegotiateDelegateWhitelist[]; |
| 742 extern const char kGSSAPILibraryName[]; | 742 extern const char kGSSAPILibraryName[]; |
| 743 extern const char kAllowCrossOriginAuthPrompt[]; | 743 extern const char kAllowCrossOriginAuthPrompt[]; |
| 744 | 744 |
| 745 extern const char kBuiltInDnsClientEnabled[]; | 745 extern const char kBuiltInDnsClientEnabled[]; |
| 746 | 746 |
| 747 extern const char kRegisteredProtocolHandlers[]; | 747 extern const char kRegisteredProtocolHandlers[]; |
| 748 extern const char kIgnoredProtocolHandlers[]; | 748 extern const char kIgnoredProtocolHandlers[]; |
| 749 extern const char kPolicyRegisteredProtocolHandlers[]; |
| 750 extern const char kPolicyIgnoredProtocolHandlers[]; |
| 749 extern const char kCustomHandlersEnabled[]; | 751 extern const char kCustomHandlersEnabled[]; |
| 750 | 752 |
| 751 #if defined(OS_MACOSX) | 753 #if defined(OS_MACOSX) |
| 752 extern const char kUserRemovedLoginItem[]; | 754 extern const char kUserRemovedLoginItem[]; |
| 753 extern const char kChromeCreatedLoginItem[]; | 755 extern const char kChromeCreatedLoginItem[]; |
| 754 extern const char kMigratedLoginItemPref[]; | 756 extern const char kMigratedLoginItemPref[]; |
| 755 extern const char kNotifyWhenAppsKeepChromeAlive[]; | 757 extern const char kNotifyWhenAppsKeepChromeAlive[]; |
| 756 #endif | 758 #endif |
| 757 | 759 |
| 758 extern const char kBackgroundModeEnabled[]; | 760 extern const char kBackgroundModeEnabled[]; |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 875 | 877 |
| 876 #if defined(OS_ANDROID) | 878 #if defined(OS_ANDROID) |
| 877 extern const char kPartnerBookmarkMappings[]; | 879 extern const char kPartnerBookmarkMappings[]; |
| 878 #endif | 880 #endif |
| 879 | 881 |
| 880 extern const char kQuickCheckEnabled[]; | 882 extern const char kQuickCheckEnabled[]; |
| 881 | 883 |
| 882 } // namespace prefs | 884 } // namespace prefs |
| 883 | 885 |
| 884 #endif // CHROME_COMMON_PREF_NAMES_H_ | 886 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |