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

Side by Side Diff: chrome/app/policy/policy_templates.json

Issue 14306004: Put Kiosk App parameters into device settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 7 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/app_mode/kiosk_app_manager.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 # policy_templates.json - Metafile for policy templates 2 # policy_templates.json - Metafile for policy templates
3 # 3 #
4 # The content of this file is evaluated as a Python expression. 4 # The content of this file is evaluated as a Python expression.
5 # 5 #
6 # This file is used as input to generate the following policy templates: 6 # This file is used as input to generate the following policy templates:
7 # ADM, ADMX+ADML, MCX/plist and html documentation. 7 # ADM, ADMX+ADML, MCX/plist and html documentation.
8 # 8 #
9 # Policy templates are user interface definitions or documents about the 9 # Policy templates are user interface definitions or documents about the
10 # policies that can be used to configure Chrome. Each policy is a name-value 10 # policies that can be used to configure Chrome. Each policy is a name-value
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 # templates and documentation. The policy definition list that Chrome sees 105 # templates and documentation. The policy definition list that Chrome sees
106 # will include policies marked with 'future'. If a WIP policy isn't meant to 106 # will include policies marked with 'future'. If a WIP policy isn't meant to
107 # be seen by the policy providers either, the 'supported_on' key should be set 107 # be seen by the policy providers either, the 'supported_on' key should be set
108 # to an empty list. 108 # to an empty list.
109 # 109 #
110 # IDs: 110 # IDs:
111 # Since a Protocol Buffer definition is generated from this file, unique and 111 # Since a Protocol Buffer definition is generated from this file, unique and
112 # persistent IDs for all fields (but not for groups!) are needed. These are 112 # persistent IDs for all fields (but not for groups!) are needed. These are
113 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, 113 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs,
114 # because doing so would break the deployed wire format! 114 # because doing so would break the deployed wire format!
115 # For your editing convenience: highest ID currently used: 201 115 # For your editing convenience: highest ID currently used: 202
116 # 116 #
117 # Placeholders: 117 # Placeholders:
118 # The following placeholder strings are automatically substituted: 118 # The following placeholder strings are automatically substituted:
119 # $1 -> Google Chrome / Chromium 119 # $1 -> Google Chrome / Chromium
120 # $2 -> Google Chrome OS / Chromium OS 120 # $2 -> Google Chrome OS / Chromium OS
121 # $3 -> Google Chrome Frame / Chromium Frame 121 # $3 -> Google Chrome Frame / Chromium Frame
122 # $6 is reserved for doc_writer 122 # $6 is reserved for doc_writer
123 # 123 #
124 # Device Policy: 124 # Device Policy:
125 # An additional flag device_only (optional, defaults to False) indicates 125 # An additional flag device_only (optional, defaults to False) indicates
(...skipping 3456 matching lines...) Expand 10 before | Expand all | Expand 10 after
3582 3582
3583 If the |DeviceLocalAccountAutoLoginId| policy is unset, this policy has no effect. Otherwise: 3583 If the |DeviceLocalAccountAutoLoginId| policy is unset, this policy has no effect. Otherwise:
3584 3584
3585 If this policy is set, it determines the amount of time without user activ ity that should elapse before automatically logging into the public session spec ified by the |DeviceLocalAccountAutoLoginId| policy. 3585 If this policy is set, it determines the amount of time without user activ ity that should elapse before automatically logging into the public session spec ified by the |DeviceLocalAccountAutoLoginId| policy.
3586 3586
3587 If this policy is unset, 0 milliseconds will be used as the timeout. 3587 If this policy is unset, 0 milliseconds will be used as the timeout.
3588 3588
3589 This policy is specified in milliseconds.''' 3589 This policy is specified in milliseconds.'''
3590 }, 3590 },
3591 { 3591 {
3592 'name': 'DeviceLocalAccountAutoLoginBailoutEnabled',
3593 'type': 'main',
3594 'schema': { 'type': 'boolean' },
3595 'supported_on': ['chrome_os:28-'],
3596 'device_only': True,
3597 'features': {
3598 'dynamic_refresh': True,
3599 },
3600 'future': True,
3601 'example_value': True,
3602 'id': 202,
3603 'caption': '''Enable bailout keyboard shortcut for auto-login''',
3604 'desc': '''Enable bailout keyboard shortcut for auto-login.
3605
3606 If this policy is unset or set to True and a device-local account is confi gured for zero-delay auto-login, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will honor the keyboard shortcut Ctrl+Alt+S for bypassing auto-logi n and showing the login screen.
3607
3608 If this policy is set to False, zero-delay auto-login (if configured) cann ot be bypassed.'''
3609 },
3610 {
3592 'name': 'BackgroundModeEnabled', 3611 'name': 'BackgroundModeEnabled',
3593 'type': 'main', 3612 'type': 'main',
3594 'schema': { 'type': 'boolean' }, 3613 'schema': { 'type': 'boolean' },
3595 'supported_on': ['chrome.win:19-', 'chrome.linux:19-'], 3614 'supported_on': ['chrome.win:19-', 'chrome.linux:19-'],
3596 'features': { 3615 'features': {
3597 'can_be_recommended': True, 3616 'can_be_recommended': True,
3598 'dynamic_refresh': True, 3617 'dynamic_refresh': True,
3599 'per_profile': False, 3618 'per_profile': False,
3600 }, 3619 },
3601 'example_value': True, 3620 'example_value': True,
(...skipping 1058 matching lines...) Expand 10 before | Expand all | Expand 10 after
4660 'desc': '''Text appended in parentheses to the policy name to indicate tha t it has been deprecated''', 4679 'desc': '''Text appended in parentheses to the policy name to indicate tha t it has been deprecated''',
4661 'text': 'deprecated', 4680 'text': 'deprecated',
4662 }, 4681 },
4663 'doc_recommended': { 4682 'doc_recommended': {
4664 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''', 4683 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''',
4665 'text': 'Default Settings (users can override)', 4684 'text': 'Default Settings (users can override)',
4666 }, 4685 },
4667 }, 4686 },
4668 'placeholders': [], 4687 'placeholders': [],
4669 } 4688 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/app_mode/kiosk_app_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698