| Index: third_party/WebKit/Source/bindings/templates/dictionary_impl.cpp.tmpl
|
| diff --git a/third_party/WebKit/Source/bindings/templates/dictionary_impl.cpp.tmpl b/third_party/WebKit/Source/bindings/templates/dictionary_impl.cpp.tmpl
|
| index 46b5735d58d80996f15bbd51566bc6d16a204b2c..f9865bb7afa4f63cf8ebbfdfecbed1ec94f3f9f8 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/dictionary_impl.cpp.tmpl
|
| +++ b/third_party/WebKit/Source/bindings/templates/dictionary_impl.cpp.tmpl
|
| @@ -51,10 +51,10 @@ void {{cpp_class}}::{{member.null_setter_name}}() {
|
|
|
| DEFINE_TRACE({{cpp_class}}) {
|
| {% for member in members if member.is_traceable %}
|
| - visitor->trace(m_{{member.cpp_name}});
|
| + visitor->Trace(m_{{member.cpp_name}});
|
| {% endfor %}
|
| {% if parent_cpp_class %}
|
| - {{parent_cpp_class}}::trace(visitor);
|
| + {{parent_cpp_class}}::Trace(visitor);
|
| {% endif %}
|
| }
|
|
|
|
|