| 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 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 725 extern const char kNotifyWhenAppsKeepChromeAlive[]; | 725 extern const char kNotifyWhenAppsKeepChromeAlive[]; |
| 726 #endif | 726 #endif |
| 727 | 727 |
| 728 extern const char kBackgroundModeEnabled[]; | 728 extern const char kBackgroundModeEnabled[]; |
| 729 extern const char kHardwareAccelerationModeEnabled[]; | 729 extern const char kHardwareAccelerationModeEnabled[]; |
| 730 extern const char kHardwareAccelerationModePrevious[]; | 730 extern const char kHardwareAccelerationModePrevious[]; |
| 731 | 731 |
| 732 extern const char kDevicePolicyRefreshRate[]; | 732 extern const char kDevicePolicyRefreshRate[]; |
| 733 | 733 |
| 734 extern const char kFactoryResetRequested[]; | 734 extern const char kFactoryResetRequested[]; |
| 735 extern const char kRollbackRequested[]; | |
| 736 | 735 |
| 737 extern const char kMessageCenterShowedFirstRunBalloon[]; | 736 extern const char kMessageCenterShowedFirstRunBalloon[]; |
| 738 extern const char kMessageCenterShowIcon[]; | 737 extern const char kMessageCenterShowIcon[]; |
| 739 extern const char kMessageCenterForcedOnTaskbar[]; | 738 extern const char kMessageCenterForcedOnTaskbar[]; |
| 740 | 739 |
| 741 extern const char kAttemptedToEnableAutoupdate[]; | 740 extern const char kAttemptedToEnableAutoupdate[]; |
| 742 | 741 |
| 743 extern const char kMediaGalleriesUniqueId[]; | 742 extern const char kMediaGalleriesUniqueId[]; |
| 744 extern const char kMediaGalleriesRememberedGalleries[]; | 743 extern const char kMediaGalleriesRememberedGalleries[]; |
| 745 extern const char kMediaGalleriesLastScanTime[]; | 744 extern const char kMediaGalleriesLastScanTime[]; |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 821 #if defined(OS_ANDROID) | 820 #if defined(OS_ANDROID) |
| 822 extern const char kPartnerBookmarkMappings[]; | 821 extern const char kPartnerBookmarkMappings[]; |
| 823 #endif | 822 #endif |
| 824 | 823 |
| 825 extern const char kQuickCheckEnabled[]; | 824 extern const char kQuickCheckEnabled[]; |
| 826 extern const char kBrowserGuestModeEnabled[]; | 825 extern const char kBrowserGuestModeEnabled[]; |
| 827 | 826 |
| 828 } // namespace prefs | 827 } // namespace prefs |
| 829 | 828 |
| 830 #endif // CHROME_COMMON_PREF_NAMES_H_ | 829 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |