| 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 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 extern const char kAuthServerWhitelist[]; | 703 extern const char kAuthServerWhitelist[]; |
| 704 extern const char kAuthNegotiateDelegateWhitelist[]; | 704 extern const char kAuthNegotiateDelegateWhitelist[]; |
| 705 extern const char kGSSAPILibraryName[]; | 705 extern const char kGSSAPILibraryName[]; |
| 706 extern const char kAllowCrossOriginAuthPrompt[]; | 706 extern const char kAllowCrossOriginAuthPrompt[]; |
| 707 | 707 |
| 708 extern const char kRegisteredProtocolHandlers[]; | 708 extern const char kRegisteredProtocolHandlers[]; |
| 709 extern const char kIgnoredProtocolHandlers[]; | 709 extern const char kIgnoredProtocolHandlers[]; |
| 710 extern const char kCustomHandlersEnabled[]; | 710 extern const char kCustomHandlersEnabled[]; |
| 711 | 711 |
| 712 extern const char kUserCreatedLoginItem[]; | 712 extern const char kUserCreatedLoginItem[]; |
| 713 extern const char kUserRemovedLoginItem[]; |
| 713 extern const char kBackgroundModeEnabled[]; | 714 extern const char kBackgroundModeEnabled[]; |
| 714 | 715 |
| 715 extern const char kDevicePolicyRefreshRate[]; | 716 extern const char kDevicePolicyRefreshRate[]; |
| 716 extern const char kUserPolicyRefreshRate[]; | 717 extern const char kUserPolicyRefreshRate[]; |
| 717 | 718 |
| 718 extern const char kRecoveryComponentVersion[]; | 719 extern const char kRecoveryComponentVersion[]; |
| 719 extern const char kComponentUpdaterState[]; | 720 extern const char kComponentUpdaterState[]; |
| 720 | 721 |
| 721 extern const char kWebIntentsEnabled[]; | 722 extern const char kWebIntentsEnabled[]; |
| 722 | 723 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 754 extern const char kNetworkProfileWarningsLeft[]; | 755 extern const char kNetworkProfileWarningsLeft[]; |
| 755 extern const char kNetworkProfileLastWarningTime[]; | 756 extern const char kNetworkProfileLastWarningTime[]; |
| 756 | 757 |
| 757 #if defined(OS_MACOSX) | 758 #if defined(OS_MACOSX) |
| 758 extern const char kMacLeopardObsoleteInfobarLastShown[]; | 759 extern const char kMacLeopardObsoleteInfobarLastShown[]; |
| 759 #endif // defined(OS_MACOSX) | 760 #endif // defined(OS_MACOSX) |
| 760 | 761 |
| 761 } // namespace prefs | 762 } // namespace prefs |
| 762 | 763 |
| 763 #endif // CHROME_COMMON_PREF_NAMES_H_ | 764 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |