OLD | NEW |
1 { | 1 { |
2 # policy_templates.json - Metafile for policy templates | 2 # policy_templates.json - Metafile for policy templates |
3 # | 3 # |
4 # This file is used as input to generate the following policy templates: | 4 # This file is used as input to generate the following policy templates: |
5 # ADM (TODO(gfeher): MCX,ADMX,DOC) | 5 # ADM (TODO(gfeher): MCX,ADMX,DOC) |
6 # | 6 # |
7 # TODO(gfeher): The format description also mentions Mac support, | 7 # TODO(gfeher): The format description also mentions Mac support, |
8 # but that functionality is not committed to the tree yet. | 8 # but that functionality is not committed to the tree yet. |
9 # | 9 # |
10 # Policy templates are user interface definitions or documents about the | 10 # Policy templates are user interface definitions or documents about the |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 'items': [ | 219 'items': [ |
220 {'name': 'RestoreOnStartupIsNone', 'value': '0'}, | 220 {'name': 'RestoreOnStartupIsNone', 'value': '0'}, |
221 {'name': 'RestoreOnStartupIsLastSession', 'value': '1'}, | 221 {'name': 'RestoreOnStartupIsLastSession', 'value': '1'}, |
222 {'name': 'RestoreOnStartupIsURLs', 'value': '4'}, | 222 {'name': 'RestoreOnStartupIsURLs', 'value': '4'}, |
223 ], | 223 ], |
224 },{ | 224 },{ |
225 'name': 'RestoreOnStartupURLs', | 225 'name': 'RestoreOnStartupURLs', |
226 'type': 'list', | 226 'type': 'list', |
227 }] | 227 }] |
228 }, | 228 }, |
| 229 { |
| 230 'name': 'ChromeFrameRendererSettings', |
| 231 'policies': [ { |
| 232 'name': 'ChromeFrameRendererSettings', |
| 233 'type': 'enum', |
| 234 'items': [ |
| 235 {'name': 'RenderInHost', 'value': '0'}, |
| 236 {'name': 'RenderInChromeFrame', 'value': '1'}, |
| 237 ], |
| 238 }, { |
| 239 'name': 'RenderInChromeFrameList', |
| 240 'type': 'list', |
| 241 }, { |
| 242 'name': 'RenderInHostList', |
| 243 'type': 'list', |
| 244 }, |
| 245 ], |
| 246 }, |
229 ], | 247 ], |
230 'placeholders': [ | 248 'placeholders': [ |
| 249 # Note: keys $1 and $3 are reserved for Chromium and Chromium frame. |
231 { | 250 { |
232 'key': '$2', | 251 'key': '$2', |
233 'value': 'http://www.chromium.org/developers/design-documents/network-sett
ings#TOC-Command-line-options-for-proxy-sett' | 252 'value': 'http://www.chromium.org/developers/design-documents/network-sett
ings#TOC-Command-line-options-for-proxy-sett' |
234 }, | 253 }, |
235 ] | 254 ] |
236 } | 255 } |
OLD | NEW |