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 { |
(...skipping 29 matching lines...) Expand all Loading... |
40 | 40 |
41 // Stores the email address associated with the google account of the custodian | 41 // Stores the email address associated with the google account of the custodian |
42 // of the managed user, set when the managed user is created. | 42 // of the managed user, set when the managed user is created. |
43 const char kManagedUserCustodianEmail[] = "profile.managed.custodian_email"; | 43 const char kManagedUserCustodianEmail[] = "profile.managed.custodian_email"; |
44 | 44 |
45 // Stores the display name associated with the google account of the custodian | 45 // Stores the display name associated with the google account of the custodian |
46 // of the managed user, updated (if possible) each time the managed user | 46 // of the managed user, updated (if possible) each time the managed user |
47 // starts a session. | 47 // starts a session. |
48 const char kManagedUserCustodianName[] = "profile.managed.custodian_name"; | 48 const char kManagedUserCustodianName[] = "profile.managed.custodian_name"; |
49 | 49 |
| 50 // Stores settings that can be modified both by a supervised user and their |
| 51 // manager. See ManagedUserSharedSettingsService for a description of |
| 52 // the format. |
| 53 const char kManagedUserSharedSettings[] = "profile.managed.shared_settings"; |
| 54 |
50 // An integer that keeps track of the profile icon version. This allows us to | 55 // An integer that keeps track of the profile icon version. This allows us to |
51 // determine the state of the profile icon for icon format changes. | 56 // determine the state of the profile icon for icon format changes. |
52 const char kProfileIconVersion[] = "profile.icon_version"; | 57 const char kProfileIconVersion[] = "profile.icon_version"; |
53 | 58 |
54 // Used to determine if the last session exited cleanly. Set to false when | 59 // Used to determine if the last session exited cleanly. Set to false when |
55 // first opened, and to true when closing. On startup if the value is false, | 60 // first opened, and to true when closing. On startup if the value is false, |
56 // it means the profile didn't exit cleanly. | 61 // it means the profile didn't exit cleanly. |
57 // DEPRECATED: this is replaced by kSessionExitType and exists for backwards | 62 // DEPRECATED: this is replaced by kSessionExitType and exists for backwards |
58 // compatability. | 63 // compatability. |
59 const char kSessionExitedCleanly[] = "profile.exited_cleanly"; | 64 const char kSessionExitedCleanly[] = "profile.exited_cleanly"; |
(...skipping 2610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2670 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; | 2675 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; |
2671 | 2676 |
2672 // The number of seconds since epoch that the OS password was last changed. | 2677 // The number of seconds since epoch that the OS password was last changed. |
2673 const char kOsPasswordLastChanged[] = | 2678 const char kOsPasswordLastChanged[] = |
2674 "password_manager.os_password_last_changed"; | 2679 "password_manager.os_password_last_changed"; |
2675 #endif | 2680 #endif |
2676 | 2681 |
2677 // Whether DNS Quick Check is disabled in proxy resolution. | 2682 // Whether DNS Quick Check is disabled in proxy resolution. |
2678 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2683 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2679 } // namespace prefs | 2684 } // namespace prefs |
OLD | NEW |