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

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

Issue 345563008: Rename "managed (mode|user)" to "supervised user" (part 4) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments Created 6 years, 6 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 30 matching lines...) Expand all
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 supervised user, set when the supervised user is created. 42 // of the supervised user, set when the supervised user is created.
43 const char kSupervisedUserCustodianEmail[] = "profile.managed.custodian_email"; 43 const char kSupervisedUserCustodianEmail[] = "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 supervised user, updated (if possible) each time the supervised user 46 // of the supervised user, updated (if possible) each time the supervised user
47 // starts a session. 47 // starts a session.
48 const char kSupervisedUserCustodianName[] = "profile.managed.custodian_name"; 48 const char kSupervisedUserCustodianName[] = "profile.managed.custodian_name";
49 49
50 // Stores settings that can be modified both by a supervised user and their 50 // Stores settings that can be modified both by a supervised user and their
51 // manager. See ManagedUserSharedSettingsService for a description of 51 // manager. See SupervisedUserSharedSettingsService for a description of
52 // the format. 52 // the format.
53 const char kSupervisedUserSharedSettings[] = "profile.managed.shared_settings"; 53 const char kSupervisedUserSharedSettings[] = "profile.managed.shared_settings";
54 54
55 // 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
56 // determine the state of the profile icon for icon format changes. 56 // determine the state of the profile icon for icon format changes.
57 const char kProfileIconVersion[] = "profile.icon_version"; 57 const char kProfileIconVersion[] = "profile.icon_version";
58 58
59 // 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
60 // 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,
61 // it means the profile didn't exit cleanly. 61 // it means the profile didn't exit cleanly.
(...skipping 2268 matching lines...) Expand 10 before | Expand all | Expand 10 after
2330 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2330 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2331 // given by the PartnerBookmarksProvider and either the user-visible renamed 2331 // given by the PartnerBookmarksProvider and either the user-visible renamed
2332 // title or an empty string if the bookmark node was removed. 2332 // title or an empty string if the bookmark node was removed.
2333 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2333 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2334 #endif 2334 #endif
2335 2335
2336 // Whether DNS Quick Check is disabled in proxy resolution. 2336 // Whether DNS Quick Check is disabled in proxy resolution.
2337 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2337 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2338 2338
2339 } // namespace prefs 2339 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698