| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 # templates and documentation. The policy definition list that Chrome sees | 130 # templates and documentation. The policy definition list that Chrome sees |
| 131 # will include policies marked with 'future'. If a WIP policy isn't meant to | 131 # will include policies marked with 'future'. If a WIP policy isn't meant to |
| 132 # be seen by the policy providers either, the 'supported_on' key should be set | 132 # be seen by the policy providers either, the 'supported_on' key should be set |
| 133 # to an empty list. | 133 # to an empty list. |
| 134 # | 134 # |
| 135 # IDs: | 135 # IDs: |
| 136 # Since a Protocol Buffer definition is generated from this file, unique and | 136 # Since a Protocol Buffer definition is generated from this file, unique and |
| 137 # persistent IDs for all fields (but not for groups!) are needed. These are | 137 # persistent IDs for all fields (but not for groups!) are needed. These are |
| 138 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, | 138 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, |
| 139 # because doing so would break the deployed wire format! | 139 # because doing so would break the deployed wire format! |
| 140 # For your editing convenience: highest ID currently used: 325 | 140 # For your editing convenience: highest ID currently used: 328 |
| 141 # | 141 # |
| 142 # Placeholders: | 142 # Placeholders: |
| 143 # The following placeholder strings are automatically substituted: | 143 # The following placeholder strings are automatically substituted: |
| 144 # $1 -> Google Chrome / Chromium | 144 # $1 -> Google Chrome / Chromium |
| 145 # $2 -> Google Chrome OS / Chromium OS | 145 # $2 -> Google Chrome OS / Chromium OS |
| 146 # $3 -> Google Chrome Frame / Chromium Frame | 146 # $3 -> Google Chrome Frame / Chromium Frame |
| 147 # $6 is reserved for doc_writer | 147 # $6 is reserved for doc_writer |
| 148 # | 148 # |
| 149 # Device Policy: | 149 # Device Policy: |
| 150 # An additional flag 'device_only' (optional, defaults to False) indicates | 150 # An additional flag 'device_only' (optional, defaults to False) indicates |
| (...skipping 2988 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3139 }, | 3139 }, |
| 3140 'example_value': 2, | 3140 'example_value': 2, |
| 3141 'id': 313, | 3141 'id': 313, |
| 3142 'caption': '''Default key generation setting''', | 3142 'caption': '''Default key generation setting''', |
| 3143 'tags': ['system-security', 'website-sharing', 'local-data-access'], | 3143 'tags': ['system-security', 'website-sharing', 'local-data-access'], |
| 3144 'desc': '''Allows you to set whether websites are allowed to use key g
eneration. Using key generation can be either allowed for all websites or denied
for all websites. | 3144 'desc': '''Allows you to set whether websites are allowed to use key g
eneration. Using key generation can be either allowed for all websites or denied
for all websites. |
| 3145 | 3145 |
| 3146 If this policy is left not set, 'BlockKeygen' will be used and the use
r will be able to change it.''', | 3146 If this policy is left not set, 'BlockKeygen' will be used and the use
r will be able to change it.''', |
| 3147 }, | 3147 }, |
| 3148 { | 3148 { |
| 3149 'name': 'UserCookiesExceptionsUsage', |
| 3150 'type': 'int-enum', |
| 3151 'schema': { |
| 3152 'type': 'integer', |
| 3153 'enum': [ 1 ], |
| 3154 }, |
| 3155 'items': [ |
| 3156 { |
| 3157 'name': 'AllowUserCookiesExceptions', |
| 3158 'value': 1, |
| 3159 'caption': '''Allow users to specify cookies exceptions''', |
| 3160 }, |
| 3161 ], |
| 3162 'supported_on': [ |
| 3163 'chrome.*:52-', |
| 3164 'chrome_os:52-', |
| 3165 ], |
| 3166 'features': { |
| 3167 'dynamic_refresh': True, |
| 3168 'per_profile': True, |
| 3169 }, |
| 3170 'example_value': 1, |
| 3171 'id': 327, |
| 3172 'caption': '''User cookies exceptions usage setting''', |
| 3173 'tags': [], |
| 3174 'desc': '''Allows you to specify whether users can set exceptions to o
verride default cookies policy. |
| 3175 |
| 3176 If this policy is left not set, user's ability to set exceptions depen
ds on policy default cookies setting.''', |
| 3177 }, |
| 3178 { |
| 3179 'name': 'UserPopupsExceptionsUsage', |
| 3180 'type': 'int-enum', |
| 3181 'schema': { |
| 3182 'type': 'integer', |
| 3183 'enum': [ 1 ], |
| 3184 }, |
| 3185 'items': [ |
| 3186 { |
| 3187 'name': 'AllowUserPopupsExceptions', |
| 3188 'value': 1, |
| 3189 'caption': '''Allow users to specify pop-ups exceptions''', |
| 3190 }, |
| 3191 ], |
| 3192 'supported_on': [ |
| 3193 'chrome.*:52-', |
| 3194 'chrome_os:52-', |
| 3195 ], |
| 3196 'features': { |
| 3197 'dynamic_refresh': True, |
| 3198 'per_profile': True, |
| 3199 }, |
| 3200 'example_value': 1, |
| 3201 'id': 328, |
| 3202 'caption': '''User pop-ups exceptions usage setting''', |
| 3203 'tags': [], |
| 3204 'desc': '''Allows you to specify whether users can set exceptions to o
verride default pop-ups policy. |
| 3205 |
| 3206 If this policy is left not set, user's ability to set exceptions depen
ds on policy default pop-ups setting.''', |
| 3207 }, |
| 3208 { |
| 3149 'name': 'AutoSelectCertificateForUrls', | 3209 'name': 'AutoSelectCertificateForUrls', |
| 3150 'type': 'list', | 3210 'type': 'list', |
| 3151 'schema': { | 3211 'schema': { |
| 3152 'type': 'array', | 3212 'type': 'array', |
| 3153 'items': { 'type': 'string' }, | 3213 'items': { 'type': 'string' }, |
| 3154 }, | 3214 }, |
| 3155 'supported_on': ['chrome.*:15-', 'chrome_os:15-'], | 3215 'supported_on': ['chrome.*:15-', 'chrome_os:15-'], |
| 3156 'features': { | 3216 'features': { |
| 3157 'dynamic_refresh': True, | 3217 'dynamic_refresh': True, |
| 3158 'per_profile': True, | 3218 'per_profile': True, |
| (...skipping 5422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8581 'desc': '''Text appended in parentheses next to the policies top-level con
tainer to indicate that those policies are of the Recommended level''', | 8641 'desc': '''Text appended in parentheses next to the policies top-level con
tainer to indicate that those policies are of the Recommended level''', |
| 8582 'text': 'Default Settings (users can override)', | 8642 'text': 'Default Settings (users can override)', |
| 8583 }, | 8643 }, |
| 8584 'doc_complex_policies_on_windows': { | 8644 'doc_complex_policies_on_windows': { |
| 8585 'desc': '''Text pointing the user to a help article for complex policies o
n Windows''', | 8645 'desc': '''Text pointing the user to a help article for complex policies o
n Windows''', |
| 8586 '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>'
'', | 8646 '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>'
'', |
| 8587 }, | 8647 }, |
| 8588 }, | 8648 }, |
| 8589 'placeholders': [], | 8649 'placeholders': [], |
| 8590 } | 8650 } |
| OLD | NEW |