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> |
11 | 11 |
12 #include "build/build_config.h" | 12 #include "build/build_config.h" |
13 #include "chrome/common/features.h" | 13 #include "chrome/common/features.h" |
14 | 14 |
15 namespace prefs { | 15 namespace prefs { |
16 | 16 |
17 // Profile prefs. Please add Local State prefs below instead. | 17 // Profile prefs. Please add Local State prefs below instead. |
18 extern const char kChildAccountStatusKnown[]; | 18 extern const char kChildAccountStatusKnown[]; |
19 extern const char kDefaultApps[]; | 19 extern const char kDefaultApps[]; |
20 extern const char kDisableScreenshots[]; | 20 extern const char kDisableScreenshots[]; |
21 extern const char kForceEphemeralProfiles[]; | 21 extern const char kForceEphemeralProfiles[]; |
22 extern const char kHomePageIsNewTabPage[]; | 22 extern const char kHomePageIsNewTabPage[]; |
23 extern const char kHomePage[]; | 23 extern const char kHomePage[]; |
24 #if defined(OS_WIN) | 24 #if defined(OS_WIN) |
25 extern const char kLastProfileResetTimestamp[]; | 25 extern const char kLastProfileResetTimestamp[]; |
26 #endif | 26 #endif |
27 extern const char kProfileIconVersion[]; | 27 extern const char kProfileIconVersion[]; |
28 extern const char kRestoreOnStartup[]; | 28 extern const char kRestoreOnStartup[]; |
29 extern const char kRestoreOnStartupMigrated[]; | |
30 extern const char kSessionExitedCleanly[]; | 29 extern const char kSessionExitedCleanly[]; |
31 extern const char kSessionExitType[]; | 30 extern const char kSessionExitType[]; |
32 extern const char kSupervisedUserCustodianEmail[]; | 31 extern const char kSupervisedUserCustodianEmail[]; |
33 extern const char kSupervisedUserCustodianName[]; | 32 extern const char kSupervisedUserCustodianName[]; |
34 extern const char kSupervisedUserCustodianProfileImageURL[]; | 33 extern const char kSupervisedUserCustodianProfileImageURL[]; |
35 extern const char kSupervisedUserCustodianProfileURL[]; | 34 extern const char kSupervisedUserCustodianProfileURL[]; |
36 extern const char kSupervisedUserManualHosts[]; | 35 extern const char kSupervisedUserManualHosts[]; |
37 extern const char kSupervisedUserManualURLs[]; | 36 extern const char kSupervisedUserManualURLs[]; |
38 extern const char kSupervisedUserSafeSites[]; | 37 extern const char kSupervisedUserSafeSites[]; |
39 extern const char kSupervisedUserSecondCustodianEmail[]; | 38 extern const char kSupervisedUserSecondCustodianEmail[]; |
(...skipping 747 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
787 extern const char kAnimationPolicy[]; | 786 extern const char kAnimationPolicy[]; |
788 #endif | 787 #endif |
789 | 788 |
790 extern const char kBackgroundTracingLastUpload[]; | 789 extern const char kBackgroundTracingLastUpload[]; |
791 | 790 |
792 extern const char kAllowDinosaurEasterEgg[]; | 791 extern const char kAllowDinosaurEasterEgg[]; |
793 | 792 |
794 } // namespace prefs | 793 } // namespace prefs |
795 | 794 |
796 #endif // CHROME_COMMON_PREF_NAMES_H_ | 795 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |