| OLD | NEW |
| 1 {% from "macros.tmpl" import license %} | 1 {% from "macros.tmpl" import license %} |
| 2 {{ license() }} | 2 {{ license() }} |
| 3 | 3 |
| 4 #include "config.h" | |
| 5 #include "V8{{namespace}}ElementWrapperFactory.h" | 4 #include "V8{{namespace}}ElementWrapperFactory.h" |
| 6 | 5 |
| 7 #include "{{namespace}}Names.h" | 6 #include "{{namespace}}Names.h" |
| 8 #include "bindings/core/v8/CustomElementWrapper.h" | 7 #include "bindings/core/v8/CustomElementWrapper.h" |
| 9 {% for tag in tags|sort if tag.has_js_interface %} | 8 {% for tag in tags|sort if tag.has_js_interface %} |
| 10 #include "bindings/core/v8/V8{{tag.interface}}.h" | 9 #include "bindings/core/v8/V8{{tag.interface}}.h" |
| 11 {% endfor %} | 10 {% endfor %} |
| 12 {% for tag in tags|sort if tag.has_js_interface %} | 11 {% for tag in tags|sort if tag.has_js_interface %} |
| 13 #include "core/{{namespace|lower}}/{{tag.js_interface}}.h" | 12 #include "core/{{namespace|lower}}/{{tag.js_interface}}.h" |
| 14 {% endfor %} | 13 {% endfor %} |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 {% endfor %} | 82 {% endfor %} |
| 84 } | 83 } |
| 85 | 84 |
| 86 if (const WrapperTypeInfo* result = map.get(name.impl())) | 85 if (const WrapperTypeInfo* result = map.get(name.impl())) |
| 87 return result; | 86 return result; |
| 88 | 87 |
| 89 return &V8{{fallback_js_interface}}::wrapperTypeInfo; | 88 return &V8{{fallback_js_interface}}::wrapperTypeInfo; |
| 90 } | 89 } |
| 91 | 90 |
| 92 } | 91 } |
| OLD | NEW |