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 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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[]; | 748 extern const char kRecoveryComponentVersion[]; |
749 extern const char kComponentUpdaterState[]; | 749 extern const char kComponentUpdaterState[]; |
750 extern const char kAttemptedToEnableAutoupdate[]; | 750 extern const char kAttemptedToEnableAutoupdate[]; |
751 | 751 |
| 752 #if defined(OS_WIN) |
| 753 extern const char kSwReporterComponentRegisterTryCount[]; |
| 754 extern const char kSwReporterComponentExecuteTryCount[]; |
| 755 #endif |
| 756 |
752 extern const char kMediaGalleriesUniqueId[]; | 757 extern const char kMediaGalleriesUniqueId[]; |
753 extern const char kMediaGalleriesRememberedGalleries[]; | 758 extern const char kMediaGalleriesRememberedGalleries[]; |
754 extern const char kMediaGalleriesLastScanTime[]; | 759 extern const char kMediaGalleriesLastScanTime[]; |
755 | 760 |
756 #if defined(USE_ASH) | 761 #if defined(USE_ASH) |
757 extern const char kShelfAlignment[]; | 762 extern const char kShelfAlignment[]; |
758 extern const char kShelfAlignmentLocal[]; | 763 extern const char kShelfAlignmentLocal[]; |
759 extern const char kShelfAutoHideBehavior[]; | 764 extern const char kShelfAutoHideBehavior[]; |
760 extern const char kShelfAutoHideBehaviorLocal[]; | 765 extern const char kShelfAutoHideBehaviorLocal[]; |
761 extern const char kShelfChromeIconIndex[]; | 766 extern const char kShelfChromeIconIndex[]; |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
830 | 835 |
831 #if defined(OS_ANDROID) | 836 #if defined(OS_ANDROID) |
832 extern const char kPartnerBookmarkMappings[]; | 837 extern const char kPartnerBookmarkMappings[]; |
833 #endif | 838 #endif |
834 | 839 |
835 extern const char kQuickCheckEnabled[]; | 840 extern const char kQuickCheckEnabled[]; |
836 | 841 |
837 } // namespace prefs | 842 } // namespace prefs |
838 | 843 |
839 #endif // CHROME_COMMON_PREF_NAMES_H_ | 844 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |