| 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 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 679 extern const char kRegisteredBackgroundContents[]; | 679 extern const char kRegisteredBackgroundContents[]; |
| 680 | 680 |
| 681 extern const char kShownAutoLaunchInfobar[]; | 681 extern const char kShownAutoLaunchInfobar[]; |
| 682 | 682 |
| 683 extern const char kAuthSchemes[]; | 683 extern const char kAuthSchemes[]; |
| 684 extern const char kDisableAuthNegotiateCnameLookup[]; | 684 extern const char kDisableAuthNegotiateCnameLookup[]; |
| 685 extern const char kEnableAuthNegotiatePort[]; | 685 extern const char kEnableAuthNegotiatePort[]; |
| 686 extern const char kAuthServerWhitelist[]; | 686 extern const char kAuthServerWhitelist[]; |
| 687 extern const char kAuthNegotiateDelegateWhitelist[]; | 687 extern const char kAuthNegotiateDelegateWhitelist[]; |
| 688 extern const char kGSSAPILibraryName[]; | 688 extern const char kGSSAPILibraryName[]; |
| 689 extern const char kSpdyProxyOrigin[]; |
| 689 extern const char kAllowCrossOriginAuthPrompt[]; | 690 extern const char kAllowCrossOriginAuthPrompt[]; |
| 690 | 691 |
| 691 extern const char kRegisteredProtocolHandlers[]; | 692 extern const char kRegisteredProtocolHandlers[]; |
| 692 extern const char kIgnoredProtocolHandlers[]; | 693 extern const char kIgnoredProtocolHandlers[]; |
| 693 extern const char kCustomHandlersEnabled[]; | 694 extern const char kCustomHandlersEnabled[]; |
| 694 | 695 |
| 695 extern const char kUserCreatedLoginItem[]; | 696 extern const char kUserCreatedLoginItem[]; |
| 696 extern const char kUserRemovedLoginItem[]; | 697 extern const char kUserRemovedLoginItem[]; |
| 697 extern const char kBackgroundModeEnabled[]; | 698 extern const char kBackgroundModeEnabled[]; |
| 698 | 699 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 737 #endif | 738 #endif |
| 738 | 739 |
| 739 extern const char kInManagedMode[]; | 740 extern const char kInManagedMode[]; |
| 740 | 741 |
| 741 extern const char kNetworkProfileWarningsLeft[]; | 742 extern const char kNetworkProfileWarningsLeft[]; |
| 742 extern const char kNetworkProfileLastWarningTime[]; | 743 extern const char kNetworkProfileLastWarningTime[]; |
| 743 | 744 |
| 744 } // namespace prefs | 745 } // namespace prefs |
| 745 | 746 |
| 746 #endif // CHROME_COMMON_PREF_NAMES_H_ | 747 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |