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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
588 extern const char kDevToolsEditedFiles[]; | 588 extern const char kDevToolsEditedFiles[]; |
589 extern const char kDevToolsFileSystemPaths[]; | 589 extern const char kDevToolsFileSystemPaths[]; |
590 extern const char kDevToolsHSplitLocation[]; | 590 extern const char kDevToolsHSplitLocation[]; |
591 extern const char kDevToolsOpenDocked[]; | 591 extern const char kDevToolsOpenDocked[]; |
592 #if defined(OS_ANDROID) | 592 #if defined(OS_ANDROID) |
593 extern const char kDevToolsRemoteEnabled[]; | 593 extern const char kDevToolsRemoteEnabled[]; |
594 #endif | 594 #endif |
595 extern const char kDevToolsVSplitLocation[]; | 595 extern const char kDevToolsVSplitLocation[]; |
596 #if defined(OS_ANDROID) | 596 #if defined(OS_ANDROID) |
597 // Used by Chrome Mobile. | 597 // Used by Chrome Mobile. |
598 extern const char kSpdyProxyEnabled[]; | 598 extern const char kSpdyProxyAuthEnabled[]; |
599 #endif | 599 #endif |
600 extern const char kSyncLastSyncedTime[]; | 600 extern const char kSyncLastSyncedTime[]; |
601 extern const char kSyncHasSetupCompleted[]; | 601 extern const char kSyncHasSetupCompleted[]; |
602 extern const char kSyncKeepEverythingSynced[]; | 602 extern const char kSyncKeepEverythingSynced[]; |
603 extern const char kSyncBookmarks[]; | 603 extern const char kSyncBookmarks[]; |
604 extern const char kSyncPasswords[]; | 604 extern const char kSyncPasswords[]; |
605 extern const char kSyncPreferences[]; | 605 extern const char kSyncPreferences[]; |
606 extern const char kSyncAppNotifications[]; | 606 extern const char kSyncAppNotifications[]; |
607 extern const char kSyncAppSettings[]; | 607 extern const char kSyncAppSettings[]; |
608 extern const char kSyncApps[]; | 608 extern const char kSyncApps[]; |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
748 extern const char kRegisteredBackgroundContents[]; | 748 extern const char kRegisteredBackgroundContents[]; |
749 | 749 |
750 extern const char kShownAutoLaunchInfobar[]; | 750 extern const char kShownAutoLaunchInfobar[]; |
751 | 751 |
752 extern const char kAuthSchemes[]; | 752 extern const char kAuthSchemes[]; |
753 extern const char kDisableAuthNegotiateCnameLookup[]; | 753 extern const char kDisableAuthNegotiateCnameLookup[]; |
754 extern const char kEnableAuthNegotiatePort[]; | 754 extern const char kEnableAuthNegotiatePort[]; |
755 extern const char kAuthServerWhitelist[]; | 755 extern const char kAuthServerWhitelist[]; |
756 extern const char kAuthNegotiateDelegateWhitelist[]; | 756 extern const char kAuthNegotiateDelegateWhitelist[]; |
757 extern const char kGSSAPILibraryName[]; | 757 extern const char kGSSAPILibraryName[]; |
758 extern const char kSpdyProxyOrigin[]; | 758 extern const char kSpdyProxyAuthOrigin[]; |
759 extern const char kAllowCrossOriginAuthPrompt[]; | 759 extern const char kAllowCrossOriginAuthPrompt[]; |
760 | 760 |
761 extern const char kBuiltInDnsClientEnabled[]; | 761 extern const char kBuiltInDnsClientEnabled[]; |
762 | 762 |
763 extern const char kHttpReceivedContentLength[]; | 763 extern const char kHttpReceivedContentLength[]; |
764 extern const char kHttpOriginalContentLength[]; | 764 extern const char kHttpOriginalContentLength[]; |
765 | 765 |
766 extern const char kRegisteredProtocolHandlers[]; | 766 extern const char kRegisteredProtocolHandlers[]; |
767 extern const char kIgnoredProtocolHandlers[]; | 767 extern const char kIgnoredProtocolHandlers[]; |
768 extern const char kCustomHandlersEnabled[]; | 768 extern const char kCustomHandlersEnabled[]; |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
843 extern const char kRLZDisabled[]; | 843 extern const char kRLZDisabled[]; |
844 #endif | 844 #endif |
845 | 845 |
846 #if defined(ENABLE_APP_LIST) | 846 #if defined(ENABLE_APP_LIST) |
847 extern const char kAppListProfile[]; | 847 extern const char kAppListProfile[]; |
848 #endif | 848 #endif |
849 | 849 |
850 } // namespace prefs | 850 } // namespace prefs |
851 | 851 |
852 #endif // CHROME_COMMON_PREF_NAMES_H_ | 852 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |