Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / build / scripts / templates / InternalSettingsGenerated.idl.tmpl
1 {% from "macros.tmpl" import license %}
2 {{ license() }}
3
4 [
5     WillBeGarbageCollected,
6 ] interface InternalSettingsGenerated {
7     {% 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     {% endfor %}
10 };