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

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

Issue 13132004: Implement Enterprise Key API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 8 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
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: 198 115 # For your editing convenience: highest ID currently used: 200
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 4367 matching lines...) Expand 10 before | Expand all | Expand 10 after
4493 'example_value': 'restricted', 4493 'example_value': 'restricted',
4494 'id': 196, 4494 'id': 196,
4495 'future': True, 4495 'future': True,
4496 'caption': '''Set the restriction on the fetching of the Variations seed'' ', 4496 'caption': '''Set the restriction on the fetching of the Variations seed'' ',
4497 'desc': '''Add a parameter to the fetching of the Variations seed in <ph n ame="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. 4497 'desc': '''Add a parameter to the fetching of the Variations seed in <ph n ame="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
4498 4498
4499 If specified, will add a query parameter called 'restrict' to the URL used to fetch the Variations seed. The value of the parameter will be the value spec ified in this policy. 4499 If specified, will add a query parameter called 'restrict' to the URL used to fetch the Variations seed. The value of the parameter will be the value spec ified in this policy.
4500 4500
4501 If not specified, will not modify the Variations seed URL.''', 4501 If not specified, will not modify the Variations seed URL.''',
4502 }, 4502 },
4503 {
4504 'name': 'Attestation',
4505 'type': 'group',
4506 'caption': 'Remote Attestation',
4507 'desc': 'Configure the remote attestation with TPM mechanism.',
4508 'policies': [
4509 {
4510 'name': 'AttestationEnabledForUser',
4511 'type': 'main',
4512 'schema': { 'type': 'boolean' },
4513 'supported_on': ['chrome_os:28-'],
4514 'features': {
4515 'dynamic_refresh': True,
4516 'per_profile': False,
Mattias Nissler (ping if slow) 2013/04/04 12:51:34 Any chance to make this per-profile?
davidyu 2013/04/09 09:30:08 I'm not quite sure about the difference for this f
Mattias Nissler (ping if slow) 2013/04/10 16:53:25 The definition of this flag is: "Can we set the po
davidyu 2013/04/11 07:04:21 Got it. Changed to true.
4517 },
4518 'example_value': True,
4519 'id': 199,
4520 'caption': '''Enable remote attestation for the user.''',
4521 'desc': '''Allow the user to remote attest using the device TPM.''',
Mattias Nissler (ping if slow) 2013/04/04 12:51:34 Please elaborate on the description. It should spe
davidyu 2013/04/09 09:30:08 Done.
4522 },
4523 {
4524 'name': 'AttestationExtensionWhitelist',
4525 'type': 'list',
4526 'schema': {
4527 'type': 'array',
4528 'items': { 'type': 'string' },
4529 },
4530 'supported_on': ['chrome_os:28-'],
4531 'features': {
4532 'dynamic_refresh': True,
4533 'per_profile': False,
Mattias Nissler (ping if slow) 2013/04/04 12:51:34 ditto
davidyu 2013/04/11 07:04:21 Done.
4534 },
4535 'example_value': ['ghdilpkmfbfdnomkmaiogjhjnggaggoi'],
4536 'id': 200,
4537 'caption': '''Extensions allowed to to use the remote attestation API. ''',
4538 'desc': '''Only extenions which are whitelisted can use the enterprise remote attestation API.''',
Mattias Nissler (ping if slow) 2013/04/04 12:51:34 ditto
davidyu 2013/04/09 09:30:08 Done.
4539 },
4540 ],
4541 },
4503 ], 4542 ],
4504 'messages': { 4543 'messages': {
4505 # Messages that are not associated to any policies. 4544 # Messages that are not associated to any policies.
4506 'win_supported_winxpsp2': { 4545 'win_supported_winxpsp2': {
4507 'desc': '''A label specifying the oldest possible compatible version of Wi ndows. This text will appear right next to a label containing the text 'Supporte d on:'.''', 4546 'desc': '''A label specifying the oldest possible compatible version of Wi ndows. This text will appear right next to a label containing the text 'Supporte d on:'.''',
4508 'text': '''Microsoft Windows XP SP2 or later''' 4547 'text': '''Microsoft Windows XP SP2 or later'''
4509 }, 4548 },
4510 'mac_chrome_preferences': { 4549 'mac_chrome_preferences': {
4511 'desc': '''A text indicating in Mac OS X Workgroup Manager, that currently the preferences of Chrome are being edited''', 4550 'desc': '''A text indicating in Mac OS X Workgroup Manager, that currently the preferences of Chrome are being edited''',
4512 'text': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> preferenc es''' 4551 'text': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> preferenc es'''
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
4595 'desc': '''Text appended in parentheses to the policy name to indicate tha t it has been deprecated''', 4634 'desc': '''Text appended in parentheses to the policy name to indicate tha t it has been deprecated''',
4596 'text': 'deprecated', 4635 'text': 'deprecated',
4597 }, 4636 },
4598 'doc_recommended': { 4637 'doc_recommended': {
4599 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''', 4638 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''',
4600 'text': 'Default Settings (users can override)', 4639 'text': 'Default Settings (users can override)',
4601 }, 4640 },
4602 }, 4641 },
4603 'placeholders': [], 4642 'placeholders': [],
4604 } 4643 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698