Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Side by Side Diff: chrome/common/pref_names.cc

Issue 123293003: Add ManagedUserSharedSettingsService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 // XXX
Pam (message me for reviews) 2014/01/08 10:30:40 XXX
Bernhard Bauer 2014/01/08 11:42:04 Fixed.
51 const char kManagedUserSharedSettings[] = "profile.managed.shared_settings";
52
50 // An integer that keeps track of the profile icon version. This allows us to 53 // 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. 54 // determine the state of the profile icon for icon format changes.
52 const char kProfileIconVersion[] = "profile.icon_version"; 55 const char kProfileIconVersion[] = "profile.icon_version";
53 56
54 // Used to determine if the last session exited cleanly. Set to false when 57 // 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, 58 // first opened, and to true when closing. On startup if the value is false,
56 // it means the profile didn't exit cleanly. 59 // it means the profile didn't exit cleanly.
57 // DEPRECATED: this is replaced by kSessionExitType and exists for backwards 60 // DEPRECATED: this is replaced by kSessionExitType and exists for backwards
58 // compatability. 61 // compatability.
59 const char kSessionExitedCleanly[] = "profile.exited_cleanly"; 62 const char kSessionExitedCleanly[] = "profile.exited_cleanly";
(...skipping 2613 matching lines...) Expand 10 before | Expand all | Expand 10 after
2673 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; 2676 const char kOsPasswordBlank[] = "password_manager.os_password_blank";
2674 2677
2675 // The number of seconds since epoch that the OS password was last changed. 2678 // The number of seconds since epoch that the OS password was last changed.
2676 const char kOsPasswordLastChanged[] = 2679 const char kOsPasswordLastChanged[] =
2677 "password_manager.os_password_last_changed"; 2680 "password_manager.os_password_last_changed";
2678 #endif 2681 #endif
2679 2682
2680 // Whether DNS Quick Check is disabled in proxy resolution. 2683 // Whether DNS Quick Check is disabled in proxy resolution.
2681 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2684 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2682 } // namespace prefs 2685 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698