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

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: Address Bin's comments. 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 5bc8bd1c029b14b5bb8371a55794695b541f88e6..f7796fc5c8626a7e9024422aa404a8a8baaa029d 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: 162
+# For your editing convenience: highest ID currently used: 163
#
# Placeholders:
# The following placeholder strings are automatically substituted:
@@ -3060,6 +3060,24 @@
The recognized connection type identifiers are "ethernet", "wifi", "wimax", "bluetooth" and "cellular".''',
},
{
+ 'name': 'DeviceLocalAccounts',
+ 'type': 'list',
+ 'schema': {
+ 'type': 'array',
+ 'items': { 'type': 'string' },
+ },
+ 'supported_on': ['chrome_os:0.25-'],
+ 'device_only': True,
+ 'future': True,
+ 'features': {'dynamic_refresh': True},
+ 'example_value': [ { "Id": "demo@example.com", "Name": "Demo session" } ],
pastarmovj 2012/11/14 13:59:30 This example is not accurate anymore please update
Mattias Nissler (ping if slow) 2012/11/16 14:54:32 Good catch. Done.
+ 'id': 163,
+ 'caption': '''Device-local accounts''',
+ 'desc': '''Specifies the list of device-local accounts to be shown on the login screen.
+
+ Every list entry specifies an identifier, which is used internally to tell the different device-local accounts apart.''',
+ },
+ {
'name': 'BackgroundModeEnabled',
'type': 'main',
'schema': { 'type': 'boolean' },

Powered by Google App Engine
This is Rietveld 408576698