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 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
738 | 738 |
739 extern const char kDevicePolicyRefreshRate[]; | 739 extern const char kDevicePolicyRefreshRate[]; |
740 | 740 |
741 extern const char kFactoryResetRequested[]; | 741 extern const char kFactoryResetRequested[]; |
742 extern const char kRollbackRequested[]; | 742 extern const char kRollbackRequested[]; |
743 | 743 |
744 extern const char kMessageCenterShowedFirstRunBalloon[]; | 744 extern const char kMessageCenterShowedFirstRunBalloon[]; |
745 extern const char kMessageCenterShowIcon[]; | 745 extern const char kMessageCenterShowIcon[]; |
746 extern const char kMessageCenterForcedOnTaskbar[]; | 746 extern const char kMessageCenterForcedOnTaskbar[]; |
747 | 747 |
748 extern const char kRecoveryComponentVersion[]; | |
blundell
2014/06/17 17:26:43
Should these be getting moved into the component?
tommycli
2014/06/17 19:01:57
kComponentUpdaterState looks unused. I moved the o
| |
749 extern const char kComponentUpdaterState[]; | |
750 extern const char kAttemptedToEnableAutoupdate[]; | 748 extern const char kAttemptedToEnableAutoupdate[]; |
751 | 749 |
752 extern const char kMediaGalleriesUniqueId[]; | 750 extern const char kMediaGalleriesUniqueId[]; |
753 extern const char kMediaGalleriesRememberedGalleries[]; | 751 extern const char kMediaGalleriesRememberedGalleries[]; |
754 extern const char kMediaGalleriesLastScanTime[]; | 752 extern const char kMediaGalleriesLastScanTime[]; |
755 | 753 |
756 #if defined(USE_ASH) | 754 #if defined(USE_ASH) |
757 extern const char kShelfAlignment[]; | 755 extern const char kShelfAlignment[]; |
758 extern const char kShelfAlignmentLocal[]; | 756 extern const char kShelfAlignmentLocal[]; |
759 extern const char kShelfAutoHideBehavior[]; | 757 extern const char kShelfAutoHideBehavior[]; |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
830 | 828 |
831 #if defined(OS_ANDROID) | 829 #if defined(OS_ANDROID) |
832 extern const char kPartnerBookmarkMappings[]; | 830 extern const char kPartnerBookmarkMappings[]; |
833 #endif | 831 #endif |
834 | 832 |
835 extern const char kQuickCheckEnabled[]; | 833 extern const char kQuickCheckEnabled[]; |
836 | 834 |
837 } // namespace prefs | 835 } // namespace prefs |
838 | 836 |
839 #endif // CHROME_COMMON_PREF_NAMES_H_ | 837 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |