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

Unified Diff: chrome/app/policy/policy_templates.json

Issue 11358113: Add device policy definition for local accounts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/app/policy/policy_templates.json
diff --git a/chrome/app/policy/policy_templates.json b/chrome/app/policy/policy_templates.json
index 12e846078a82243eaf26a16bc8d9345aa134591d..d117227cc62018e5b378f1417bdbff9e7be1f0ce 100644
--- a/chrome/app/policy/policy_templates.json
+++ b/chrome/app/policy/policy_templates.json
@@ -112,7 +112,7 @@
# persistent IDs for all fields (but not for groups!) are needed. These are
# specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs,
# because doing so would break the deployed wire format!
-# For your editing convenience: highest ID currently used: 161
+# For your editing convenience: highest ID currently used: 162
#
# Placeholders:
# The following placeholder strings are automatically substituted:
@@ -3042,6 +3042,33 @@
The recognized connection type identifiers are "ethernet", "wifi", "wimax", "bluetooth" and "cellular".''',
},
{
+ # TODO(joaodasilva): Make this the default and deprecate the other proxy
pastarmovj 2012/11/06 12:42:15 proxy policies?
Mattias Nissler (ping if slow) 2012/11/12 15:50:51 Done.
+ # policies once all providers are ready to load 'dict' policies.
+ # This is currently an internal policy.
+ # http://crbug.com/108992, http://crbug.com/108996
+ 'name': 'DeviceLocalAccounts',
Bin 2012/11/07 19:17:04 What's this for? I assume it is a device-level pol
Mattias Nissler (ping if slow) 2012/11/12 15:50:51 This is just for allocating a policy constant (whi
+ 'type': 'list',
+ 'schema': {
+ 'type': 'array',
+ 'items': {
+ 'type': 'object',
+ 'properties': {
+ 'Id': { 'type': 'string' },
+ 'Name': { 'type': 'string' },
+ },
+ },
+ },
+ 'supported_on': ['chrome_os:0.25-'],
+ 'future': True,
+ 'features': {'dynamic_refresh': True},
+ 'example_value': [ { "Id": "demo@example.com", "Name": "Demo session" } ],
+ 'id': 162,
+ 'caption': '''Local accounts''',
+ 'desc': '''Specifies the list of local accounts to be shown on the login screen.
+
+ Every list entry gives an identifier, which is used internally to tell the different local accounts apart, and a display name that will be used to show the local account on the login screen.''',
+ },
+ {
'name': 'BackgroundModeEnabled',
'type': 'main',
'schema': { 'type': 'boolean' },

Powered by Google App Engine
This is Rietveld 408576698