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..fbac384835bfe8fcf2419be79b4b4f9d2672fb15 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 %} |