| Index: Source/bindings/templates/interface.cpp
|
| diff --git a/Source/bindings/templates/interface.cpp b/Source/bindings/templates/interface.cpp
|
| index e9d431fbb85bd789af40e57b837e6c10bcc02f08..6a16efd9fa6a3d10aeb436ee8b421051c82bfb7e 100644
|
| --- a/Source/bindings/templates/interface.cpp
|
| +++ b/Source/bindings/templates/interface.cpp
|
| @@ -1292,7 +1292,11 @@ v8::Handle<v8::Object> {{v8_class}}::createWrapper({{pass_ref_ptr}}<{{cpp_class}
|
| {% block deref_object_and_to_v8_no_inline %}
|
| void {{v8_class}}::derefObject(void* object)
|
| {
|
| +{% set oilpan_conditional = '!ENABLE(OILPAN)' if is_will_be_garbage_collected
|
| + else '' %}
|
| +{% filter conditional(oilpan_conditional) %}
|
| fromInternalPointer(object)->deref();
|
| +{% endfilter %}
|
| }
|
|
|
| template<>
|
|
|