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