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