| 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 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 ], | 598 ], |
| 599 'supported_on': ['chrome.*:10-'], | 599 'supported_on': ['chrome.*:10-'], |
| 600 'annotations': { | 600 'annotations': { |
| 601 'features': {'dynamic_refresh': 1}, | 601 'features': {'dynamic_refresh': 1}, |
| 602 'example_value': 0, | 602 'example_value': 0, |
| 603 } | 603 } |
| 604 }, | 604 }, |
| 605 ] | 605 ] |
| 606 }, | 606 }, |
| 607 { | 607 { |
| 608 'name': 'Disable3DAPIs', |
| 609 'type': 'main', |
| 610 'supported_on': ['chrome.*:9-'], |
| 611 'annotations': { |
| 612 # It'll be difficult to support dynamically disabling access to these AP
Is. |
| 613 'features': {'dynamic_refresh': 0}, |
| 614 'example_value': False, |
| 615 } |
| 616 }, |
| 617 { |
| 608 'name': 'ChromeFrameRendererSettings', | 618 'name': 'ChromeFrameRendererSettings', |
| 609 'type': 'group', | 619 'type': 'group', |
| 610 'policies': [{ | 620 'policies': [{ |
| 611 'name': 'ChromeFrameRendererSettings', | 621 'name': 'ChromeFrameRendererSettings', |
| 612 'type': 'enum', | 622 'type': 'enum', |
| 613 'items': [ | 623 'items': [ |
| 614 {'name': 'RenderInHost', 'value': '0'}, | 624 {'name': 'RenderInHost', 'value': '0'}, |
| 615 {'name': 'RenderInChromeFrame', 'value': '1'}, | 625 {'name': 'RenderInChromeFrame', 'value': '1'}, |
| 616 ], | 626 ], |
| 617 'supported_on': ['chrome_frame:8-'], | 627 'supported_on': ['chrome_frame:8-'], |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 670 { | 680 { |
| 671 'key': '$4', | 681 'key': '$4', |
| 672 'value': 'http://www.chromium.org/developers/how-tos/chrome-frame-getting-
started' | 682 'value': 'http://www.chromium.org/developers/how-tos/chrome-frame-getting-
started' |
| 673 }, | 683 }, |
| 674 { | 684 { |
| 675 'key': '$5', | 685 'key': '$5', |
| 676 'value': 'http://www.chromium.org/administrators/policy-templates' | 686 'value': 'http://www.chromium.org/administrators/policy-templates' |
| 677 }, | 687 }, |
| 678 ] | 688 ] |
| 679 } | 689 } |
| OLD | NEW |