| 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 30 matching lines...) Expand all Loading... |
| 41 extern const char kSupervisedUserManualURLs[]; | 41 extern const char kSupervisedUserManualURLs[]; |
| 42 extern const char kSupervisedUserSafeSites[]; | 42 extern const char kSupervisedUserSafeSites[]; |
| 43 extern const char kSupervisedUserSecondCustodianEmail[]; | 43 extern const char kSupervisedUserSecondCustodianEmail[]; |
| 44 extern const char kSupervisedUserSecondCustodianName[]; | 44 extern const char kSupervisedUserSecondCustodianName[]; |
| 45 extern const char kSupervisedUserSecondCustodianProfileImageURL[]; | 45 extern const char kSupervisedUserSecondCustodianProfileImageURL[]; |
| 46 extern const char kSupervisedUserSecondCustodianProfileURL[]; | 46 extern const char kSupervisedUserSecondCustodianProfileURL[]; |
| 47 extern const char kSupervisedUserSharedSettings[]; | 47 extern const char kSupervisedUserSharedSettings[]; |
| 48 extern const char kSupervisedUserWhitelists[]; | 48 extern const char kSupervisedUserWhitelists[]; |
| 49 extern const char kURLsToRestoreOnStartup[]; | 49 extern const char kURLsToRestoreOnStartup[]; |
| 50 | 50 |
| 51 // For OS_CHROMEOS we maintain kApplicationLocale property in both local state | 51 // For OS_CHROMEOS we maintain the kApplicationLocale property in both local |
| 52 // and user's profile. Global property determines locale of login screen, | 52 // state and the user's profile. The global property determines the locale of |
| 53 // while user's profile determines his personal locale preference. | 53 // the login screen, while the user's profile determines their personal locale |
| 54 // preference. |
| 54 extern const char kApplicationLocale[]; | 55 extern const char kApplicationLocale[]; |
| 55 #if defined(OS_CHROMEOS) | 56 #if defined(OS_CHROMEOS) |
| 56 extern const char kApplicationLocaleBackup[]; | 57 extern const char kApplicationLocaleBackup[]; |
| 57 extern const char kApplicationLocaleAccepted[]; | 58 extern const char kApplicationLocaleAccepted[]; |
| 58 extern const char kOwnerLocale[]; | 59 extern const char kOwnerLocale[]; |
| 59 #endif | 60 #endif |
| 60 | 61 |
| 61 extern const char kDefaultCharset[]; | 62 extern const char kDefaultCharset[]; |
| 62 extern const char kAcceptLanguages[]; | 63 extern const char kAcceptLanguages[]; |
| 63 extern const char kStaticEncodings[]; | 64 extern const char kStaticEncodings[]; |
| (...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 807 #if defined(GOOGLE_CHROME_BUILD) | 808 #if defined(GOOGLE_CHROME_BUILD) |
| 808 extern const char kMediaRouterCloudServicesPrefSet[]; | 809 extern const char kMediaRouterCloudServicesPrefSet[]; |
| 809 extern const char kMediaRouterEnableCloudServices[]; | 810 extern const char kMediaRouterEnableCloudServices[]; |
| 810 #endif // defined(GOOGLE_CHROME_BUILD) | 811 #endif // defined(GOOGLE_CHROME_BUILD) |
| 811 extern const char kMediaRouterFirstRunFlowAcknowledged[]; | 812 extern const char kMediaRouterFirstRunFlowAcknowledged[]; |
| 812 #endif | 813 #endif |
| 813 | 814 |
| 814 } // namespace prefs | 815 } // namespace prefs |
| 815 | 816 |
| 816 #endif // CHROME_COMMON_PREF_NAMES_H_ | 817 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |