| Index: third_party/WebKit/Source/bindings/templates/dictionary_impl.h.tmpl
|
| diff --git a/third_party/WebKit/Source/bindings/templates/dictionary_impl.h.tmpl b/third_party/WebKit/Source/bindings/templates/dictionary_impl.h.tmpl
|
| index 7c904e5ee5aa9c3dc082d67b0eee68e536e19eed..5d6c7b531b30464f9b57623cdb77bacb47e7e90c 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/dictionary_impl.h.tmpl
|
| +++ b/third_party/WebKit/Source/bindings/templates/dictionary_impl.h.tmpl
|
| @@ -36,10 +36,11 @@ class {{exported}}{{cpp_class}}{% if parent_cpp_class %} : public {{parent_cpp_c
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| - {% for member in members %}
|
| - {% if member.nullable_indicator_name %}
|
| + {% for member in members if member.nullable_indicator_name %}
|
| bool {{member.nullable_indicator_name}} = false;
|
| - {% endif %}
|
| + {% endfor %}
|
| +
|
| + {% for member in members %}
|
| {{member.member_cpp_type}} m_{{member.cpp_name}};
|
| {% endfor %}
|
|
|
|
|