| 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/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
| 9 | 9 |
| 10 namespace prefs { | 10 namespace prefs { |
| 11 | 11 |
| 12 // *************** PROFILE PREFS *************** | 12 // *************** PROFILE PREFS *************** |
| 13 // These are attached to the user profile | 13 // These are attached to the user profile |
| 14 | 14 |
| 15 |
| 16 // A bool pref that keeps whether the child status for this profile was already |
| 17 // successfully checked via ChildAccountService. |
| 18 const char kChildAccountStatusKnown[] = "child_account_status_known"; |
| 19 |
| 15 // A string property indicating whether default apps should be installed | 20 // A string property indicating whether default apps should be installed |
| 16 // in this profile. Use the value "install" to enable defaults apps, or | 21 // in this profile. Use the value "install" to enable defaults apps, or |
| 17 // "noinstall" to disable them. This property is usually set in the | 22 // "noinstall" to disable them. This property is usually set in the |
| 18 // master_preferences and copied into the profile preferences on first run. | 23 // master_preferences and copied into the profile preferences on first run. |
| 19 // Defaults apps are installed only when creating a new profile. | 24 // Defaults apps are installed only when creating a new profile. |
| 20 const char kDefaultApps[] = "default_apps"; | 25 const char kDefaultApps[] = "default_apps"; |
| 21 | 26 |
| 22 // Whether we have installed default apps yet in this profile. | 27 // Whether we have installed default apps yet in this profile. |
| 23 const char kDefaultAppsInstalled[] = "default_apps_installed"; | 28 const char kDefaultAppsInstalled[] = "default_apps_installed"; |
| 24 | 29 |
| (...skipping 2252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2277 // (name and a list of clients that registered the whitelist). | 2282 // (name and a list of clients that registered the whitelist). |
| 2278 const char kRegisteredSupervisedUserWhitelists[] = | 2283 const char kRegisteredSupervisedUserWhitelists[] = |
| 2279 "supervised_users.whitelists"; | 2284 "supervised_users.whitelists"; |
| 2280 | 2285 |
| 2281 #if defined(ENABLE_EXTENSIONS) | 2286 #if defined(ENABLE_EXTENSIONS) |
| 2282 // Policy that indicates how to handle animated images. | 2287 // Policy that indicates how to handle animated images. |
| 2283 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2288 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2284 #endif | 2289 #endif |
| 2285 | 2290 |
| 2286 } // namespace prefs | 2291 } // namespace prefs |
| OLD | NEW |