| OLD | NEW |
| 1 {% from "macros.tmpl" import license %} | 1 {% from "macros.tmpl" import license %} |
| 2 {{ license() }} | 2 {{ license() }} |
| 3 | 3 |
| 4 [ | 4 [ |
| 5 TypeChecking=Unrestricted, |
| 5 WillBeGarbageCollected, | 6 WillBeGarbageCollected, |
| 6 ] interface InternalSettingsGenerated { | 7 ] interface InternalSettingsGenerated { |
| 7 {% for setting in settings if setting.type|to_idl_type %} | 8 {% for setting in settings if setting.type|to_idl_type %} |
| 8 void set{{setting.name|upper_first}}({{setting.type|to_idl_type}} {{setting.
name}}); | 9 void set{{setting.name|upper_first}}({{setting.type|to_idl_type}} {{setting.
name}}); |
| 9 {% endfor %} | 10 {% endfor %} |
| 10 }; | 11 }; |
| OLD | NEW |