| 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 747 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 758 | 758 |
| 759 extern const char kDevicePolicyRefreshRate[]; | 759 extern const char kDevicePolicyRefreshRate[]; |
| 760 extern const char kUserPolicyRefreshRate[]; | 760 extern const char kUserPolicyRefreshRate[]; |
| 761 extern const char kDisableCloudPolicyOnSignin[]; | 761 extern const char kDisableCloudPolicyOnSignin[]; |
| 762 | 762 |
| 763 extern const char kFactoryResetRequested[]; | 763 extern const char kFactoryResetRequested[]; |
| 764 | 764 |
| 765 extern const char kRecoveryComponentVersion[]; | 765 extern const char kRecoveryComponentVersion[]; |
| 766 extern const char kComponentUpdaterState[]; | 766 extern const char kComponentUpdaterState[]; |
| 767 | 767 |
| 768 #if defined(ENABLE_WEB_INTENTS) | |
| 769 extern const char kWebIntentsEnabled[]; | |
| 770 #endif | |
| 771 | |
| 772 extern const char kMediaGalleriesUniqueId[]; | 768 extern const char kMediaGalleriesUniqueId[]; |
| 773 extern const char kMediaGalleriesRememberedGalleries[]; | 769 extern const char kMediaGalleriesRememberedGalleries[]; |
| 774 | 770 |
| 775 #if defined(USE_AURA) | 771 #if defined(USE_AURA) |
| 776 extern const char kShelfAlignment[]; | 772 extern const char kShelfAlignment[]; |
| 777 extern const char kShelfAlignmentLocal[]; | 773 extern const char kShelfAlignmentLocal[]; |
| 778 extern const char kShelfAutoHideBehavior[]; | 774 extern const char kShelfAutoHideBehavior[]; |
| 779 extern const char kShelfAutoHideBehaviorLocal[]; | 775 extern const char kShelfAutoHideBehaviorLocal[]; |
| 780 extern const char kPinnedLauncherApps[]; | 776 extern const char kPinnedLauncherApps[]; |
| 781 extern const char kShowLogoutButtonInTray[]; | 777 extern const char kShowLogoutButtonInTray[]; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 826 extern const char kRLZDisabled[]; | 822 extern const char kRLZDisabled[]; |
| 827 #endif | 823 #endif |
| 828 | 824 |
| 829 #if defined(ENABLE_APP_LIST) | 825 #if defined(ENABLE_APP_LIST) |
| 830 extern const char kAppListProfile[]; | 826 extern const char kAppListProfile[]; |
| 831 #endif | 827 #endif |
| 832 | 828 |
| 833 } // namespace prefs | 829 } // namespace prefs |
| 834 | 830 |
| 835 #endif // CHROME_COMMON_PREF_NAMES_H_ | 831 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |