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 760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
771 | 771 |
772 extern const char kDevicePolicyRefreshRate[]; | 772 extern const char kDevicePolicyRefreshRate[]; |
773 extern const char kUserPolicyRefreshRate[]; | 773 extern const char kUserPolicyRefreshRate[]; |
774 extern const char kDisableCloudPolicyOnSignin[]; | 774 extern const char kDisableCloudPolicyOnSignin[]; |
775 | 775 |
776 extern const char kFactoryResetRequested[]; | 776 extern const char kFactoryResetRequested[]; |
777 | 777 |
778 extern const char kRecoveryComponentVersion[]; | 778 extern const char kRecoveryComponentVersion[]; |
779 extern const char kComponentUpdaterState[]; | 779 extern const char kComponentUpdaterState[]; |
780 | 780 |
781 #if defined(ENABLE_WEB_INTENTS) | |
782 extern const char kWebIntentsEnabled[]; | |
783 #endif | |
784 | |
785 extern const char kMediaGalleriesUniqueId[]; | 781 extern const char kMediaGalleriesUniqueId[]; |
786 extern const char kMediaGalleriesRememberedGalleries[]; | 782 extern const char kMediaGalleriesRememberedGalleries[]; |
787 | 783 |
788 #if defined(USE_AURA) | 784 #if defined(USE_AURA) |
789 extern const char kShelfAlignment[]; | 785 extern const char kShelfAlignment[]; |
790 extern const char kShelfAlignmentLocal[]; | 786 extern const char kShelfAlignmentLocal[]; |
791 extern const char kShelfAutoHideBehavior[]; | 787 extern const char kShelfAutoHideBehavior[]; |
792 extern const char kShelfAutoHideBehaviorLocal[]; | 788 extern const char kShelfAutoHideBehaviorLocal[]; |
793 extern const char kPinnedLauncherApps[]; | 789 extern const char kPinnedLauncherApps[]; |
794 extern const char kShowLogoutButtonInTray[]; | 790 extern const char kShowLogoutButtonInTray[]; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
845 extern const char kRLZDisabled[]; | 841 extern const char kRLZDisabled[]; |
846 #endif | 842 #endif |
847 | 843 |
848 #if defined(ENABLE_APP_LIST) | 844 #if defined(ENABLE_APP_LIST) |
849 extern const char kAppListProfile[]; | 845 extern const char kAppListProfile[]; |
850 #endif | 846 #endif |
851 | 847 |
852 } // namespace prefs | 848 } // namespace prefs |
853 | 849 |
854 #endif // CHROME_COMMON_PREF_NAMES_H_ | 850 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |