| Index: Source/bindings/templates/dictionary_impl.h
|
| diff --git a/Source/bindings/templates/dictionary_impl.h b/Source/bindings/templates/dictionary_impl.h
|
| index 9cdea3d4cc10829e56e1fd4f85028554847dfb02..0b3027c0f17414224c352fe083a397628c006f50 100644
|
| --- a/Source/bindings/templates/dictionary_impl.h
|
| +++ b/Source/bindings/templates/dictionary_impl.h
|
| @@ -13,7 +13,7 @@
|
|
|
| namespace blink {
|
|
|
| -class {{cpp_class}} final {
|
| +class {{cpp_class}}{% if parent_cpp_class %} : public {{parent_cpp_class}}{% endif %} {
|
| ALLOW_ONLY_INLINE_ALLOCATION();
|
| public:
|
| {{cpp_class}}();
|
| @@ -24,7 +24,7 @@ public:
|
| void {{member.setter_name}}({{member.rvalue_cpp_type}} value) { m_{{member.cpp_name}} = value; }
|
|
|
| {% endfor %}
|
| - void trace(Visitor*);
|
| + virtual void trace(Visitor*);
|
|
|
| private:
|
| {% for member in members %}
|
|
|