Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(121)

Unified Diff: third_party/WebKit/Source/bindings/templates/dictionary_impl.cpp.tmpl

Issue 2707243006: [SharedArrayBuffer] Prevent SharedArrayBuffer being used in Web APIs (Closed)
Patch Set: add some layout tests Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 %}

Powered by Google App Engine
This is Rietveld 408576698