| 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 15 matching lines...) Expand all Loading... |
| 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 kRestoreOnStartup[]; | 31 extern const char kRestoreOnStartup[]; |
| 32 extern const char kRestoreOnStartupMigrated[]; | 32 extern const char kRestoreOnStartupMigrated[]; |
| 33 extern const char kRestoreStartupURLsMigrationTime[]; | 33 extern const char kRestoreStartupURLsMigrationTime[]; |
| 34 extern const char kSessionExitedCleanly[]; | 34 extern const char kSessionExitedCleanly[]; |
| 35 extern const char kSessionExitType[]; | 35 extern const char kSessionExitType[]; |
| 36 extern const char kSupervisedUserCustodianEmail[]; |
| 37 extern const char kSupervisedUserCustodianName[]; |
| 38 extern const char kSupervisedUserCustodianProfileImageURL[]; |
| 36 extern const char kSupervisedUserManualHosts[]; | 39 extern const char kSupervisedUserManualHosts[]; |
| 37 extern const char kSupervisedUserManualURLs[]; | 40 extern const char kSupervisedUserManualURLs[]; |
| 38 extern const char kSupervisedUserCustodianEmail[]; | 41 extern const char kSupervisedUserSecondCustodianEmail[]; |
| 39 extern const char kSupervisedUserCustodianName[]; | 42 extern const char kSupervisedUserSecondCustodianName[]; |
| 43 extern const char kSupervisedUserSecondCustodianProfileImageURL[]; |
| 40 extern const char kSupervisedUserSharedSettings[]; | 44 extern const char kSupervisedUserSharedSettings[]; |
| 41 extern const char kURLsToRestoreOnStartup[]; | 45 extern const char kURLsToRestoreOnStartup[]; |
| 42 extern const char kURLsToRestoreOnStartupOld[]; | 46 extern const char kURLsToRestoreOnStartupOld[]; |
| 43 | 47 |
| 44 // For OS_CHROMEOS we maintain kApplicationLocale property in both local state | 48 // For OS_CHROMEOS we maintain kApplicationLocale property in both local state |
| 45 // and user's profile. Global property determines locale of login screen, | 49 // and user's profile. Global property determines locale of login screen, |
| 46 // while user's profile determines his personal locale preference. | 50 // while user's profile determines his personal locale preference. |
| 47 extern const char kApplicationLocale[]; | 51 extern const char kApplicationLocale[]; |
| 48 #if defined(OS_CHROMEOS) | 52 #if defined(OS_CHROMEOS) |
| 49 extern const char kApplicationLocaleBackup[]; | 53 extern const char kApplicationLocaleBackup[]; |
| (...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 811 | 815 |
| 812 #if defined(OS_ANDROID) | 816 #if defined(OS_ANDROID) |
| 813 extern const char kPartnerBookmarkMappings[]; | 817 extern const char kPartnerBookmarkMappings[]; |
| 814 #endif | 818 #endif |
| 815 | 819 |
| 816 extern const char kQuickCheckEnabled[]; | 820 extern const char kQuickCheckEnabled[]; |
| 817 | 821 |
| 818 } // namespace prefs | 822 } // namespace prefs |
| 819 | 823 |
| 820 #endif // CHROME_COMMON_PREF_NAMES_H_ | 824 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |