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