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 10 matching lines...) Expand all Loading... |
21 namespace prefs { | 21 namespace prefs { |
22 | 22 |
23 // Profile prefs. Please add Local State prefs below instead. | 23 // Profile prefs. Please add Local State prefs below instead. |
24 extern const char kDefaultApps[]; | 24 extern const char kDefaultApps[]; |
25 extern const char kDefaultAppsInstalled[]; | 25 extern const char kDefaultAppsInstalled[]; |
26 extern const char kDisableScreenshots[]; | 26 extern const char kDisableScreenshots[]; |
27 extern const char kForceEphemeralProfiles[]; | 27 extern const char kForceEphemeralProfiles[]; |
28 extern const char kHomePageIsNewTabPage[]; | 28 extern const char kHomePageIsNewTabPage[]; |
29 extern const char kHomePage[]; | 29 extern const char kHomePage[]; |
30 extern const char kProfileIconVersion[]; | 30 extern const char kProfileIconVersion[]; |
| 31 extern const char kProfileHostedDomain[]; |
| 32 extern const char kProfileIsLockableVersion[]; |
31 extern const char kRestoreOnStartup[]; | 33 extern const char kRestoreOnStartup[]; |
32 extern const char kRestoreOnStartupMigrated[]; | 34 extern const char kRestoreOnStartupMigrated[]; |
33 extern const char kRestoreStartupURLsMigrationTime[]; | 35 extern const char kRestoreStartupURLsMigrationTime[]; |
34 extern const char kSessionExitedCleanly[]; | 36 extern const char kSessionExitedCleanly[]; |
35 extern const char kSessionExitType[]; | 37 extern const char kSessionExitType[]; |
36 extern const char kSupervisedUserCustodianEmail[]; | 38 extern const char kSupervisedUserCustodianEmail[]; |
37 extern const char kSupervisedUserCustodianName[]; | 39 extern const char kSupervisedUserCustodianName[]; |
38 extern const char kSupervisedUserCustodianProfileImageURL[]; | 40 extern const char kSupervisedUserCustodianProfileImageURL[]; |
39 extern const char kSupervisedUserCustodianProfileURL[]; | 41 extern const char kSupervisedUserCustodianProfileURL[]; |
40 extern const char kSupervisedUserManualHosts[]; | 42 extern const char kSupervisedUserManualHosts[]; |
(...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
815 extern const char kPartnerBookmarkMappings[]; | 817 extern const char kPartnerBookmarkMappings[]; |
816 #endif | 818 #endif |
817 | 819 |
818 extern const char kQuickCheckEnabled[]; | 820 extern const char kQuickCheckEnabled[]; |
819 extern const char kBrowserGuestModeEnabled[]; | 821 extern const char kBrowserGuestModeEnabled[]; |
820 extern const char kBrowserAddPersonEnabled[]; | 822 extern const char kBrowserAddPersonEnabled[]; |
821 | 823 |
822 } // namespace prefs | 824 } // namespace prefs |
823 | 825 |
824 #endif // CHROME_COMMON_PREF_NAMES_H_ | 826 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |