| 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 f9865bb7afa4f63cf8ebbfdfecbed1ec94f3f9f8..dc7b9aff47ede59710d845b9fe5efe49120bc637 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/dictionary_impl.cpp.tmpl
|
| +++ b/third_party/WebKit/Source/bindings/templates/dictionary_impl.cpp.tmpl
|
| @@ -33,7 +33,7 @@ bool {{cpp_class}}::{{member.has_method_name}}() const {
|
| return {{member.getter_expression}};
|
| }
|
| void {{cpp_class}}::{{member.setter_name}}({{member.rvalue_cpp_type}} value) {
|
| - m_{{member.cpp_name}} = value;
|
| + m_{{member.cpp_name}} = {{member.setter_value}};
|
| {% if member.nullable_indicator_name %}
|
| {{member.nullable_indicator_name}} = true;
|
| {% endif %}
|
|
|