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 780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
791 | 791 |
792 extern const char kEasyUnlockDeviceId[]; | 792 extern const char kEasyUnlockDeviceId[]; |
793 extern const char kEasyUnlockHardlockState[]; | 793 extern const char kEasyUnlockHardlockState[]; |
794 extern const char kEasyUnlockLocalStateTpmKeys[]; | 794 extern const char kEasyUnlockLocalStateTpmKeys[]; |
795 extern const char kEasyUnlockLocalStateUserPrefs[]; | 795 extern const char kEasyUnlockLocalStateUserPrefs[]; |
796 | 796 |
797 extern const char kRecoveryComponentNeedsElevation[]; | 797 extern const char kRecoveryComponentNeedsElevation[]; |
798 | 798 |
799 extern const char kRegisteredSupervisedUserWhitelists[]; | 799 extern const char kRegisteredSupervisedUserWhitelists[]; |
800 | 800 |
| 801 #if BUILDFLAG(ENABLE_BACKGROUND) |
| 802 extern const char kRestartInBackground[]; |
| 803 #endif |
| 804 |
801 #if defined(ENABLE_EXTENSIONS) | 805 #if defined(ENABLE_EXTENSIONS) |
802 extern const char kAnimationPolicy[]; | 806 extern const char kAnimationPolicy[]; |
803 #endif | 807 #endif |
804 | 808 |
805 extern const char kBackgroundTracingLastUpload[]; | 809 extern const char kBackgroundTracingLastUpload[]; |
806 | 810 |
807 extern const char kAllowDinosaurEasterEgg[]; | 811 extern const char kAllowDinosaurEasterEgg[]; |
808 | 812 |
809 #if defined(OS_ANDROID) | 813 #if defined(OS_ANDROID) |
810 extern const char kClickedUpdateMenuItem[]; | 814 extern const char kClickedUpdateMenuItem[]; |
811 extern const char kLatestVersionWhenClickedUpdateMenuItem[]; | 815 extern const char kLatestVersionWhenClickedUpdateMenuItem[]; |
812 #endif | 816 #endif |
813 | 817 |
814 #if defined(ENABLE_MEDIA_ROUTER) | 818 #if defined(ENABLE_MEDIA_ROUTER) |
815 #if defined(GOOGLE_CHROME_BUILD) | 819 #if defined(GOOGLE_CHROME_BUILD) |
816 extern const char kMediaRouterCloudServicesPrefSet[]; | 820 extern const char kMediaRouterCloudServicesPrefSet[]; |
817 extern const char kMediaRouterEnableCloudServices[]; | 821 extern const char kMediaRouterEnableCloudServices[]; |
818 #endif // defined(GOOGLE_CHROME_BUILD) | 822 #endif // defined(GOOGLE_CHROME_BUILD) |
819 extern const char kMediaRouterFirstRunFlowAcknowledged[]; | 823 extern const char kMediaRouterFirstRunFlowAcknowledged[]; |
820 #endif | 824 #endif |
821 | 825 |
822 extern const char kOriginTrialPublicKey[]; | 826 extern const char kOriginTrialPublicKey[]; |
823 extern const char kOriginTrialDisabledFeatures[]; | 827 extern const char kOriginTrialDisabledFeatures[]; |
824 | 828 |
825 } // namespace prefs | 829 } // namespace prefs |
826 | 830 |
827 #endif // CHROME_COMMON_PREF_NAMES_H_ | 831 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |