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 815 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
826 | 826 |
827 extern const char kBackgroundModeEnabled[]; | 827 extern const char kBackgroundModeEnabled[]; |
828 extern const char kHardwareAccelerationModeEnabled[]; | 828 extern const char kHardwareAccelerationModeEnabled[]; |
829 extern const char kHardwareAccelerationModePrevious[]; | 829 extern const char kHardwareAccelerationModePrevious[]; |
830 | 830 |
831 extern const char kDevicePolicyRefreshRate[]; | 831 extern const char kDevicePolicyRefreshRate[]; |
832 | 832 |
833 extern const char kFactoryResetRequested[]; | 833 extern const char kFactoryResetRequested[]; |
834 | 834 |
835 extern const char kMessageCenterShowedFirstRunBalloon[]; | 835 extern const char kMessageCenterShowedFirstRunBalloon[]; |
| 836 extern const char kMessageCenterForcedOnTaskbar[]; |
836 | 837 |
837 extern const char kRecoveryComponentVersion[]; | 838 extern const char kRecoveryComponentVersion[]; |
838 extern const char kComponentUpdaterState[]; | 839 extern const char kComponentUpdaterState[]; |
839 | 840 |
840 extern const char kMediaGalleriesUniqueId[]; | 841 extern const char kMediaGalleriesUniqueId[]; |
841 extern const char kMediaGalleriesRememberedGalleries[]; | 842 extern const char kMediaGalleriesRememberedGalleries[]; |
842 extern const char kMediaGalleriesLastScanTime[]; | 843 extern const char kMediaGalleriesLastScanTime[]; |
843 | 844 |
844 #if defined(USE_ASH) | 845 #if defined(USE_ASH) |
845 extern const char kShelfAlignment[]; | 846 extern const char kShelfAlignment[]; |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
943 | 944 |
944 #if defined(OS_ANDROID) | 945 #if defined(OS_ANDROID) |
945 extern const char kPartnerBookmarkMappings[]; | 946 extern const char kPartnerBookmarkMappings[]; |
946 #endif | 947 #endif |
947 | 948 |
948 extern const char kQuickCheckEnabled[]; | 949 extern const char kQuickCheckEnabled[]; |
949 | 950 |
950 } // namespace prefs | 951 } // namespace prefs |
951 | 952 |
952 #endif // CHROME_COMMON_PREF_NAMES_H_ | 953 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |