| 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 560f309b85525392861e6eab2098963d2a93974a..00b3c65fab50f4d545cf2fdc9ed678bc75791fc2 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/interface.cpp
|
| +++ b/third_party/WebKit/Source/bindings/templates/interface.cpp
|
| @@ -566,6 +566,9 @@ static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| void {{v8_class}}::visitDOMWrapper(v8::Isolate* isolate, ScriptWrappable* scriptWrappable, const v8::Persistent<v8::Object>& wrapper)
|
| {
|
| {{cpp_class}}* impl = scriptWrappable->toImpl<{{cpp_class}}>();
|
| + {% if has_visit_dom_wrapper_extra %}
|
| + {{v8_class}}::visitDOMWrapperExtra(isolate, impl, wrapper);
|
| + {% endif %}
|
| {% if set_wrapper_reference_to %}
|
| {{set_wrapper_reference_to.cpp_type}} {{set_wrapper_reference_to.name}} = impl->{{set_wrapper_reference_to.name}}();
|
| if ({{set_wrapper_reference_to.name}}) {
|
|
|