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 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
793 | 793 |
794 extern const char kDevicePolicyRefreshRate[]; | 794 extern const char kDevicePolicyRefreshRate[]; |
795 | 795 |
796 extern const char kFactoryResetRequested[]; | 796 extern const char kFactoryResetRequested[]; |
797 extern const char kRollbackRequested[]; | 797 extern const char kRollbackRequested[]; |
798 | 798 |
799 extern const char kMessageCenterShowedFirstRunBalloon[]; | 799 extern const char kMessageCenterShowedFirstRunBalloon[]; |
800 | 800 |
801 extern const char kRecoveryComponentVersion[]; | 801 extern const char kRecoveryComponentVersion[]; |
802 extern const char kComponentUpdaterState[]; | 802 extern const char kComponentUpdaterState[]; |
| 803 extern const char kAttemptedToEnableAutoupdate[]; |
803 | 804 |
804 extern const char kMediaGalleriesUniqueId[]; | 805 extern const char kMediaGalleriesUniqueId[]; |
805 extern const char kMediaGalleriesRememberedGalleries[]; | 806 extern const char kMediaGalleriesRememberedGalleries[]; |
806 extern const char kMediaGalleriesLastScanTime[]; | 807 extern const char kMediaGalleriesLastScanTime[]; |
807 | 808 |
808 #if defined(USE_ASH) | 809 #if defined(USE_ASH) |
809 extern const char kShelfAlignment[]; | 810 extern const char kShelfAlignment[]; |
810 extern const char kShelfAlignmentLocal[]; | 811 extern const char kShelfAlignmentLocal[]; |
811 extern const char kShelfAutoHideBehavior[]; | 812 extern const char kShelfAutoHideBehavior[]; |
812 extern const char kShelfAutoHideBehaviorLocal[]; | 813 extern const char kShelfAutoHideBehaviorLocal[]; |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
906 | 907 |
907 #if defined(OS_ANDROID) | 908 #if defined(OS_ANDROID) |
908 extern const char kPartnerBookmarkMappings[]; | 909 extern const char kPartnerBookmarkMappings[]; |
909 #endif | 910 #endif |
910 | 911 |
911 extern const char kQuickCheckEnabled[]; | 912 extern const char kQuickCheckEnabled[]; |
912 | 913 |
913 } // namespace prefs | 914 } // namespace prefs |
914 | 915 |
915 #endif // CHROME_COMMON_PREF_NAMES_H_ | 916 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |