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 812 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
823 extern const char kBackgroundModeEnabled[]; | 823 extern const char kBackgroundModeEnabled[]; |
824 extern const char kHardwareAccelerationModeEnabled[]; | 824 extern const char kHardwareAccelerationModeEnabled[]; |
825 extern const char kHardwareAccelerationModePrevious[]; | 825 extern const char kHardwareAccelerationModePrevious[]; |
826 | 826 |
827 extern const char kDevicePolicyRefreshRate[]; | 827 extern const char kDevicePolicyRefreshRate[]; |
828 extern const char kUserPolicyRefreshRate[]; | 828 extern const char kUserPolicyRefreshRate[]; |
829 extern const char kDisableCloudPolicyOnSignin[]; | 829 extern const char kDisableCloudPolicyOnSignin[]; |
830 | 830 |
831 extern const char kFactoryResetRequested[]; | 831 extern const char kFactoryResetRequested[]; |
832 | 832 |
| 833 extern const char kMessageCenterShowedFirstRunBalloon[]; |
| 834 |
833 extern const char kRecoveryComponentVersion[]; | 835 extern const char kRecoveryComponentVersion[]; |
834 extern const char kComponentUpdaterState[]; | 836 extern const char kComponentUpdaterState[]; |
835 | 837 |
836 extern const char kMediaGalleriesUniqueId[]; | 838 extern const char kMediaGalleriesUniqueId[]; |
837 extern const char kMediaGalleriesRememberedGalleries[]; | 839 extern const char kMediaGalleriesRememberedGalleries[]; |
838 | 840 |
839 #if defined(USE_ASH) | 841 #if defined(USE_ASH) |
840 extern const char kShelfAlignment[]; | 842 extern const char kShelfAlignment[]; |
841 extern const char kShelfAlignmentLocal[]; | 843 extern const char kShelfAlignmentLocal[]; |
842 extern const char kShelfAutoHideBehavior[]; | 844 extern const char kShelfAutoHideBehavior[]; |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
927 extern const char kAppListAppLaunchCount[]; | 929 extern const char kAppListAppLaunchCount[]; |
928 | 930 |
929 extern const char kModuleConflictBubbleShown[]; | 931 extern const char kModuleConflictBubbleShown[]; |
930 | 932 |
931 extern const char kDRMSalt[]; | 933 extern const char kDRMSalt[]; |
932 extern const char kEnableDRM[]; | 934 extern const char kEnableDRM[]; |
933 | 935 |
934 } // namespace prefs | 936 } // namespace prefs |
935 | 937 |
936 #endif // CHROME_COMMON_PREF_NAMES_H_ | 938 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |