Chromium Code Reviews| Index: Source/bindings/templates/interface_base.cpp |
| diff --git a/Source/bindings/templates/interface_base.cpp b/Source/bindings/templates/interface_base.cpp |
| index 68a7cc5d3b873c49082a76d81c027af21e7a3e38..66040e1d2a5073c18c77ba5930d031f11dbdd5b4 100644 |
| --- a/Source/bindings/templates/interface_base.cpp |
| +++ b/Source/bindings/templates/interface_base.cpp |
| @@ -109,6 +109,12 @@ template <typename T> void V8_USE(T) { } |
| {% endfor %} |
| {% endif %} |
| {% endfor %} |
| +{% if iterator_method %} |
| +{% for world_suffix in iterator_method.world_suffixes %} |
|
haraken
2014/08/25 06:22:00
Ditto. You don't need to support per-world-binding
yhirano
2014/08/25 06:54:58
Done.
|
| +{{generate_method(iterator_method, world_suffix)}} |
| +{{method_callback(iterator_method, world_suffix)}} |
| +{% endfor %} |
| +{% endif %} |
| {% block origin_safe_method_setter %}{% endblock %} |
| {# Constructors #} |
| {% for constructor in constructors %} |