- add third_party src.
[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 interface InternalSettingsGenerated {
5 {%- for setting in settings if setting.type|to_idl_type %}
6     void set{{setting.name|upper_first}}({{setting.type|to_idl_type}} {{setting.name}});
7 {%- endfor %}
8 };