Chromium Code Reviews| Index: Source/bindings/templates/dictionary_impl.cpp |
| diff --git a/Source/bindings/templates/dictionary_impl.cpp b/Source/bindings/templates/dictionary_impl.cpp |
| index 60e56ec938cbf511e5274db520ef52f710761c52..d562867bd6bf8c06ccec769f17aa51c2b1511a84 100644 |
| --- a/Source/bindings/templates/dictionary_impl.cpp |
| +++ b/Source/bindings/templates/dictionary_impl.cpp |
| @@ -23,6 +23,9 @@ namespace blink { |
| void {{cpp_class}}::trace(Visitor* visitor) |
| { |
| + {% if parent_cpp_class %} |
| + {{parent_cpp_class}}::trace(visitor); |
|
haraken
2014/11/19 09:11:26
Would you move this down to the tail of this trace
bashi
2014/11/19 11:04:42
Done.
|
| + {% endif %} |
| {% for member in members if member.is_traceable %} |
| visitor->trace(m_{{member.cpp_name}}); |
| {% endfor %} |