OLD | NEW |
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 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
499 'type': 'list', | 499 'type': 'list', |
500 'supported_on': ['chrome.*:8-'], | 500 'supported_on': ['chrome.*:8-'], |
501 'annotations': { | 501 'annotations': { |
502 'features': {'dynamic_refresh': 1}, | 502 'features': {'dynamic_refresh': 1}, |
503 'example_value': ['UTF-8', 'UTF-16', 'GB2312', 'ISO-8859-1'] | 503 'example_value': ['UTF-8', 'UTF-16', 'GB2312', 'ISO-8859-1'] |
504 } | 504 } |
505 }, | 505 }, |
506 ] | 506 ] |
507 }, | 507 }, |
508 { | 508 { |
509 'name': 'Disable3DAPIs', | |
510 'type': 'main', | |
511 'supported_on': ['chrome.*:9-'], | |
512 'annotations': { | |
513 # It'll be difficult to support dynamically disabling access to these AP
Is. | |
514 'features': {'dynamic_refresh': 0}, | |
515 'example_value': False, | |
516 } | |
517 }, | |
518 { | |
519 'name': 'ContentSettings', | 509 'name': 'ContentSettings', |
520 'type': 'group', | 510 'type': 'group', |
521 'policies': [ | 511 'policies': [ |
522 { | 512 { |
523 'name': 'DefaultCookiesSetting', | 513 'name': 'DefaultCookiesSetting', |
524 'type': 'enum', | 514 'type': 'enum', |
525 'items': [ | 515 'items': [ |
526 {'name': 'AllowCookies', 'value': '0'}, | 516 {'name': 'AllowCookies', 'value': '0'}, |
527 {'name': 'BlockCookies', 'value': '1'}, | 517 {'name': 'BlockCookies', 'value': '1'}, |
528 ], | 518 ], |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
680 { | 670 { |
681 'key': '$4', | 671 'key': '$4', |
682 'value': 'http://www.chromium.org/developers/how-tos/chrome-frame-getting-
started' | 672 'value': 'http://www.chromium.org/developers/how-tos/chrome-frame-getting-
started' |
683 }, | 673 }, |
684 { | 674 { |
685 'key': '$5', | 675 'key': '$5', |
686 'value': 'http://www.chromium.org/administrators/policy-templates' | 676 'value': 'http://www.chromium.org/administrators/policy-templates' |
687 }, | 677 }, |
688 ] | 678 ] |
689 } | 679 } |
OLD | NEW |