| 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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
| 10 | 10 |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 // manager. See SupervisedUserSharedSettingsService for a description of | 140 // manager. See SupervisedUserSharedSettingsService for a description of |
| 141 // the format. | 141 // the format. |
| 142 const char kSupervisedUserSharedSettings[] = "profile.managed.shared_settings"; | 142 const char kSupervisedUserSharedSettings[] = "profile.managed.shared_settings"; |
| 143 | 143 |
| 144 // A dictionary storing whitelists for a supervised user. The key is the CRX ID | 144 // A dictionary storing whitelists for a supervised user. The key is the CRX ID |
| 145 // of the whitelist, the value a dictionary containing whitelist properties | 145 // of the whitelist, the value a dictionary containing whitelist properties |
| 146 // (currently the name). | 146 // (currently the name). |
| 147 const char kSupervisedUserWhitelists[] = "profile.managed.whitelists"; | 147 const char kSupervisedUserWhitelists[] = "profile.managed.whitelists"; |
| 148 | 148 |
| 149 // The application locale. | 149 // The application locale. |
| 150 // For OS_CHROMEOS we maintain kApplicationLocale property in both local state | 150 // For OS_CHROMEOS we maintain the kApplicationLocale property in both local |
| 151 // and user's profile. Global property determines locale of login screen, | 151 // state and the user's profile. The global property determines the locale of |
| 152 // while user's profile determines his personal locale preference. | 152 // the login screen, while the user's profile determines their personal locale |
| 153 // preference. |
| 153 const char kApplicationLocale[] = "intl.app_locale"; | 154 const char kApplicationLocale[] = "intl.app_locale"; |
| 154 #if defined(OS_CHROMEOS) | 155 #if defined(OS_CHROMEOS) |
| 155 // Locale preference of device' owner. ChromeOS device appears in this locale | 156 // Locale preference of device' owner. ChromeOS device appears in this locale |
| 156 // after startup/wakeup/signout. | 157 // after startup/wakeup/signout. |
| 157 const char kOwnerLocale[] = "intl.owner_locale"; | 158 const char kOwnerLocale[] = "intl.owner_locale"; |
| 158 // Locale accepted by user. Non-syncable. | 159 // Locale accepted by user. Non-syncable. |
| 159 // Used to determine whether we need to show Locale Change notification. | 160 // Used to determine whether we need to show Locale Change notification. |
| 160 const char kApplicationLocaleAccepted[] = "intl.app_locale_accepted"; | 161 const char kApplicationLocaleAccepted[] = "intl.app_locale_accepted"; |
| 161 // Non-syncable item. | 162 // Non-syncable item. |
| 162 // It is used in two distinct ways. | 163 // It is used in two distinct ways. |
| (...skipping 2057 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2220 const char kMediaRouterEnableCloudServices[] = | 2221 const char kMediaRouterEnableCloudServices[] = |
| 2221 "media_router.cloudservices.enabled"; | 2222 "media_router.cloudservices.enabled"; |
| 2222 #endif // defined(GOOGLE_CHROME_BUILD) | 2223 #endif // defined(GOOGLE_CHROME_BUILD) |
| 2223 // Whether or not the Media Router first run flow has been acknowledged by the | 2224 // Whether or not the Media Router first run flow has been acknowledged by the |
| 2224 // user. | 2225 // user. |
| 2225 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2226 const char kMediaRouterFirstRunFlowAcknowledged[] = |
| 2226 "media_router.firstrunflow.acknowledged"; | 2227 "media_router.firstrunflow.acknowledged"; |
| 2227 #endif | 2228 #endif |
| 2228 | 2229 |
| 2229 } // namespace prefs | 2230 } // namespace prefs |
| OLD | NEW |