| 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 781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 792 extern const char kBackgroundModeEnabled[]; | 792 extern const char kBackgroundModeEnabled[]; |
| 793 extern const char kHardwareAccelerationModeEnabled[]; | 793 extern const char kHardwareAccelerationModeEnabled[]; |
| 794 extern const char kHardwareAccelerationModePrevious[]; | 794 extern const char kHardwareAccelerationModePrevious[]; |
| 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 extern const char kMessageCenterForcedOnTaskbar[]; |
| 802 | 803 |
| 803 extern const char kRecoveryComponentVersion[]; | 804 extern const char kRecoveryComponentVersion[]; |
| 804 extern const char kComponentUpdaterState[]; | 805 extern const char kComponentUpdaterState[]; |
| 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[]; |
| (...skipping 96 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 |