| Index: third_party/WebKit/Source/bindings/templates/interface.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/templates/interface.cpp b/third_party/WebKit/Source/bindings/templates/interface.cpp
|
| index 3e522fa757dc7e986e91c68d60805c402d86bdd9..6e707309297f82fe6fd9ba045af2317f10745689 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/interface.cpp
|
| +++ b/third_party/WebKit/Source/bindings/templates/interface.cpp
|
| @@ -534,6 +534,21 @@ static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {% endif %}
|
| {% endblock %}
|
|
|
| +{##############################################################################}
|
| +
|
| +{% block trace_wrappers %}
|
| +{% if trace_wrappers %}
|
| +DEFINE_TRACE_WRAPPERS({{cpp_class_or_partial}})
|
| +{
|
| + {% for traceable in trace_wrappers %}
|
| + visitor->traceWrappers({{traceable}}());
|
| + {% endfor %}
|
| + {% if parent_interface %}
|
| + {{parent_interface}}::traceWrappers(visitor);
|
| + {% endif %}
|
| +}
|
| +{% endif %}
|
| +{% endblock %}
|
|
|
| {##############################################################################}
|
| {% block visit_dom_wrapper %}
|
|
|