Index: Source/build/scripts/templates/ElementWrapperFactory.cpp.tmpl |
diff --git a/Source/build/scripts/templates/ElementWrapperFactory.cpp.tmpl b/Source/build/scripts/templates/ElementWrapperFactory.cpp.tmpl |
index 03123f30e73594726a511bbfd121011763cffc8a..3ee951cc2a57f0efa58c6658011dae2fa2ef3dc6 100644 |
--- a/Source/build/scripts/templates/ElementWrapperFactory.cpp.tmpl |
+++ b/Source/build/scripts/templates/ElementWrapperFactory.cpp.tmpl |
@@ -80,14 +80,14 @@ WrapperTypeInfo* findWrapperTypeFor{{namespace}}TagName(const AtomicString& name |
// FIXME: This seems wrong. We should list every interface here, not |
// just the ones that have specialized JavaScript interfaces. |
{%- for tag in tags|sort if tag.has_js_interface %} |
- map.set({{tag|symbol}}Tag.localName().impl(), WrapperTypeTraits<{{tag.js_interface}}>::info()); |
+ map.set({{tag|symbol}}Tag.localName().impl(), WrapperTypeTraits<{{tag.js_interface}}>::wrapperTypeInfo()); |
{%- endfor %} |
} |
if (WrapperTypeInfo* result = map.get(name.impl())) |
return result; |
- return WrapperTypeTraits<{{fallback_js_interface}}>::info(); |
+ return WrapperTypeTraits<{{fallback_js_interface}}>::wrapperTypeInfo(); |
} |
} |