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 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
706 | 706 |
707 extern const char kBackgroundModeEnabled[]; | 707 extern const char kBackgroundModeEnabled[]; |
708 extern const char kHardwareAccelerationModeEnabled[]; | 708 extern const char kHardwareAccelerationModeEnabled[]; |
709 extern const char kHardwareAccelerationModePrevious[]; | 709 extern const char kHardwareAccelerationModePrevious[]; |
710 | 710 |
711 extern const char kDevicePolicyRefreshRate[]; | 711 extern const char kDevicePolicyRefreshRate[]; |
712 | 712 |
713 extern const char kFactoryResetRequested[]; | 713 extern const char kFactoryResetRequested[]; |
714 extern const char kDebuggingFeaturesRequested[]; | 714 extern const char kDebuggingFeaturesRequested[]; |
715 | 715 |
716 extern const char kMessageCenterShowedFirstRunBalloon[]; | |
717 extern const char kMessageCenterShowIcon[]; | |
718 extern const char kMessageCenterForcedOnTaskbar[]; | |
719 | |
720 #if defined(OS_CHROMEOS) | 716 #if defined(OS_CHROMEOS) |
721 extern const char kResolveDeviceTimezoneByGeolocation[]; | 717 extern const char kResolveDeviceTimezoneByGeolocation[]; |
722 #endif // defined(OS_CHROMEOS) | 718 #endif // defined(OS_CHROMEOS) |
723 | 719 |
724 extern const char kAttemptedToEnableAutoupdate[]; | 720 extern const char kAttemptedToEnableAutoupdate[]; |
725 | 721 |
726 extern const char kMediaGalleriesUniqueId[]; | 722 extern const char kMediaGalleriesUniqueId[]; |
727 extern const char kMediaGalleriesRememberedGalleries[]; | 723 extern const char kMediaGalleriesRememberedGalleries[]; |
728 extern const char kMediaGalleriesLastScanTime[]; | 724 extern const char kMediaGalleriesLastScanTime[]; |
729 | 725 |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
815 | 811 |
816 #if defined(ENABLE_EXTENSIONS) | 812 #if defined(ENABLE_EXTENSIONS) |
817 extern const char kAnimationPolicy[]; | 813 extern const char kAnimationPolicy[]; |
818 #endif | 814 #endif |
819 | 815 |
820 extern const char kBackgroundTracingLastUpload[]; | 816 extern const char kBackgroundTracingLastUpload[]; |
821 | 817 |
822 } // namespace prefs | 818 } // namespace prefs |
823 | 819 |
824 #endif // CHROME_COMMON_PREF_NAMES_H_ | 820 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |