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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 # templates and documentation. The policy definition list that Chrome sees | 136 # templates and documentation. The policy definition list that Chrome sees |
137 # will include policies marked with 'future'. If a WIP policy isn't meant to | 137 # will include policies marked with 'future'. If a WIP policy isn't meant to |
138 # be seen by the policy providers either, the 'supported_on' key should be set | 138 # be seen by the policy providers either, the 'supported_on' key should be set |
139 # to an empty list. | 139 # to an empty list. |
140 # | 140 # |
141 # IDs: | 141 # IDs: |
142 # Since a Protocol Buffer definition is generated from this file, unique and | 142 # Since a Protocol Buffer definition is generated from this file, unique and |
143 # persistent IDs for all fields (but not for groups!) are needed. These are | 143 # persistent IDs for all fields (but not for groups!) are needed. These are |
144 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, | 144 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, |
145 # because doing so would break the deployed wire format! | 145 # because doing so would break the deployed wire format! |
146 # For your editing convenience: highest ID currently used: 371 | 146 # For your editing convenience: highest ID currently used: 372 |
147 # And don't forget to also update the EnterprisePolicies enum of | 147 # And don't forget to also update the EnterprisePolicies enum of |
148 # histograms.xml (run 'python tools/metrics/histograms/update_policies.py'). | 148 # histograms.xml (run 'python tools/metrics/histograms/update_policies.py'). |
149 # | 149 # |
150 # Placeholders: | 150 # Placeholders: |
151 # The following placeholder strings are automatically substituted: | 151 # The following placeholder strings are automatically substituted: |
152 # $1 -> Google Chrome / Chromium | 152 # $1 -> Google Chrome / Chromium |
153 # $2 -> Google Chrome OS / Chromium OS | 153 # $2 -> Google Chrome OS / Chromium OS |
154 # $3 -> Google Chrome Frame / Chromium Frame | 154 # $3 -> Google Chrome Frame / Chromium Frame |
155 # $6 is reserved for doc_writer | 155 # $6 is reserved for doc_writer |
156 # | 156 # |
(...skipping 1630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1787 | 1787 |
1788 If you set this policy, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></
ph> will use the provided directory regardless whether the user has specified on
e or enabled the flag to be prompted for download location every time. | 1788 If you set this policy, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></
ph> will use the provided directory regardless whether the user has specified on
e or enabled the flag to be prompted for download location every time. |
1789 | 1789 |
1790 See https://www.chromium.org/administrators/policy-list-3/user-data-direct
ory-variables for a list of variables that can be used. | 1790 See https://www.chromium.org/administrators/policy-list-3/user-data-direct
ory-variables for a list of variables that can be used. |
1791 | 1791 |
1792 If this policy is left not set the default download directory will be used
and the user will be able to change it.''', | 1792 If this policy is left not set the default download directory will be used
and the user will be able to change it.''', |
1793 'label': '''Set download directory''', | 1793 'label': '''Set download directory''', |
1794 'arc_support': 'This policy has no effect on Android apps. Android apps al
ways use the default downloads directory and cannot access any files downloaded
by <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> into a non-defaul
t downloads directory.', | 1794 'arc_support': 'This policy has no effect on Android apps. Android apps al
ways use the default downloads directory and cannot access any files downloaded
by <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> into a non-defaul
t downloads directory.', |
1795 }, | 1795 }, |
1796 { | 1796 { |
| 1797 'name': 'SafeBrowsingForTrustedSourcesEnabled', |
| 1798 'type': 'main', |
| 1799 'schema': { 'type': 'boolean' }, |
| 1800 'supported_on': ['chrome.*:61-', 'chrome_os:61-'], |
| 1801 'features': { |
| 1802 'can_be_recommended': True, |
| 1803 'dynamic_refresh': True, |
| 1804 'per_profile': True, |
| 1805 }, |
| 1806 'example_value': False, |
| 1807 'id': 372, |
| 1808 'caption': '''SafeBrowsing enable state for trusted sources''', |
| 1809 'tags': ['local-data-access'], |
| 1810 'desc': '''Identify if <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></p
h> can allow download without Safe Browsing checks when it's from a trusted sour
ce. |
| 1811 |
| 1812 When False, downloaded files will not be sent to be analyzed by Safe Brows
ing when it's from a trusted source. |
| 1813 |
| 1814 When not set (or set to True, which is the default value), downloaded file
s are sent to be analyzed by Safe Browsing, even when it's from a trusted source
. |
| 1815 |
| 1816 Note that these restrictions apply to downloads triggered from web page co
ntent, as well as the 'download link...' context menu option. |
| 1817 |
| 1818 But these restrictions do not apply to the save / download of the currentl
y displayed page, nor does it apply to saving as PDF from the printing options. |
| 1819 |
| 1820 This policy is not available on Windows instances that are not joined |
| 1821 to a Microsoft® Active Directory® domain.''', |
| 1822 'label': '''SafeBrowsing enable state for trusted sources''', |
| 1823 }, |
| 1824 { |
1797 'name': 'ClearSiteDataOnExit', | 1825 'name': 'ClearSiteDataOnExit', |
1798 'type': 'main', | 1826 'type': 'main', |
1799 'schema': { 'type': 'boolean' }, | 1827 'schema': { 'type': 'boolean' }, |
1800 'supported_on': ['chrome.*:11-28', 'chrome_os:11-28'], | 1828 'supported_on': ['chrome.*:11-28', 'chrome_os:11-28'], |
1801 'features': { | 1829 'features': { |
1802 'can_be_recommended': True, | 1830 'can_be_recommended': True, |
1803 'dynamic_refresh': True, | 1831 'dynamic_refresh': True, |
1804 'per_profile': True, | 1832 'per_profile': True, |
1805 }, | 1833 }, |
1806 'deprecated': True, | 1834 'deprecated': True, |
(...skipping 7945 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
9752 'desc': '''Text appended in parentheses next to the policies top-level con
tainer to indicate that those policies are of the Recommended level''', | 9780 'desc': '''Text appended in parentheses next to the policies top-level con
tainer to indicate that those policies are of the Recommended level''', |
9753 'text': 'Default Settings (users can override)', | 9781 'text': 'Default Settings (users can override)', |
9754 }, | 9782 }, |
9755 'doc_complex_policies_on_windows': { | 9783 'doc_complex_policies_on_windows': { |
9756 'desc': '''Text pointing the user to a help article for complex policies o
n Windows''', | 9784 'desc': '''Text pointing the user to a help article for complex policies o
n Windows''', |
9757 'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POL
ICIES_URL">https://www.chromium.org/administrators/complex-policies-on-windows<e
x>https://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>'
'', | 9785 'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POL
ICIES_URL">https://www.chromium.org/administrators/complex-policies-on-windows<e
x>https://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>'
'', |
9758 }, | 9786 }, |
9759 }, | 9787 }, |
9760 'placeholders': [], | 9788 'placeholders': [], |
9761 } | 9789 } |
OLD | NEW |