Index: third_party/WebKit/Source/bindings/scripts/v8_dictionary.py |
diff --git a/third_party/WebKit/Source/bindings/scripts/v8_dictionary.py b/third_party/WebKit/Source/bindings/scripts/v8_dictionary.py |
index 92d310df06acb9c551b2b7b132280d8b6f21b8f7..66fd18f16b8a15670edca090456ee14441e40cb3 100644 |
--- a/third_party/WebKit/Source/bindings/scripts/v8_dictionary.py |
+++ b/third_party/WebKit/Source/bindings/scripts/v8_dictionary.py |
@@ -231,10 +231,6 @@ |
else: |
header_includes.update(idl_type.impl_includes_for_type(interfaces_info)) |
- setter_value = 'value' |
- if idl_type.is_array_buffer_view_or_typed_array: |
- setter_value += '.View()' |
- |
return { |
'cpp_default_value': cpp_default_value, |
'cpp_name': cpp_name, |
@@ -249,5 +245,4 @@ |
'nullable_indicator_name': nullable_indicator_name, |
'rvalue_cpp_type': idl_type.cpp_type_args(used_as_rvalue_type=True), |
'setter_name': setter_name_for_dictionary_member(member), |
- 'setter_value': setter_value, |
- } |
+ } |