| 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 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 extern const char kBackgroundModeEnabled[]; | 788 extern const char kBackgroundModeEnabled[]; |
| 789 extern const char kHardwareAccelerationModeEnabled[]; | 789 extern const char kHardwareAccelerationModeEnabled[]; |
| 790 extern const char kHardwareAccelerationModePrevious[]; | 790 extern const char kHardwareAccelerationModePrevious[]; |
| 791 | 791 |
| 792 extern const char kDevicePolicyRefreshRate[]; | 792 extern const char kDevicePolicyRefreshRate[]; |
| 793 | 793 |
| 794 extern const char kFactoryResetRequested[]; | 794 extern const char kFactoryResetRequested[]; |
| 795 extern const char kRollbackRequested[]; | 795 extern const char kRollbackRequested[]; |
| 796 | 796 |
| 797 extern const char kMessageCenterShowedFirstRunBalloon[]; | 797 extern const char kMessageCenterShowedFirstRunBalloon[]; |
| 798 extern const char kMessageCenterForcedOnTaskbar[]; |
| 798 | 799 |
| 799 extern const char kRecoveryComponentVersion[]; | 800 extern const char kRecoveryComponentVersion[]; |
| 800 extern const char kComponentUpdaterState[]; | 801 extern const char kComponentUpdaterState[]; |
| 801 extern const char kAttemptedToEnableAutoupdate[]; | 802 extern const char kAttemptedToEnableAutoupdate[]; |
| 802 | 803 |
| 803 extern const char kMediaGalleriesUniqueId[]; | 804 extern const char kMediaGalleriesUniqueId[]; |
| 804 extern const char kMediaGalleriesRememberedGalleries[]; | 805 extern const char kMediaGalleriesRememberedGalleries[]; |
| 805 extern const char kMediaGalleriesLastScanTime[]; | 806 extern const char kMediaGalleriesLastScanTime[]; |
| 806 | 807 |
| 807 #if defined(USE_ASH) | 808 #if defined(USE_ASH) |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 905 | 906 |
| 906 #if defined(OS_ANDROID) | 907 #if defined(OS_ANDROID) |
| 907 extern const char kPartnerBookmarkMappings[]; | 908 extern const char kPartnerBookmarkMappings[]; |
| 908 #endif | 909 #endif |
| 909 | 910 |
| 910 extern const char kQuickCheckEnabled[]; | 911 extern const char kQuickCheckEnabled[]; |
| 911 | 912 |
| 912 } // namespace prefs | 913 } // namespace prefs |
| 913 | 914 |
| 914 #endif // CHROME_COMMON_PREF_NAMES_H_ | 915 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |