Index: Source/bindings/scripts/v8_interface.py |
diff --git a/Source/bindings/scripts/v8_interface.py b/Source/bindings/scripts/v8_interface.py |
index 96c83e4bcc2226bcbbde3eb501ebf1f78cccdfa7..d4985ea3b210450bf5de511174302ec3f511a624 100644 |
--- a/Source/bindings/scripts/v8_interface.py |
+++ b/Source/bindings/scripts/v8_interface.py |
@@ -166,7 +166,7 @@ def interface_context(interface): |
# [NotScriptWrappable] |
is_script_wrappable = 'NotScriptWrappable' not in extended_attributes |
- # [Custom=Wrap], [SetWrapperReferenceFrom] |
+ # [SetWrapperReferenceFrom] |
has_visit_dom_wrapper = ( |
has_extended_attribute_value(interface, 'Custom', 'VisitDOMWrapper') or |
reachable_node_function or |
@@ -192,7 +192,6 @@ def interface_context(interface): |
interface.name != 'EventTarget'), |
'has_custom_legacy_call_as_function': has_extended_attribute_value(interface, 'Custom', 'LegacyCallAsFunction'), # [Custom=LegacyCallAsFunction] |
'has_custom_to_v8': has_extended_attribute_value(interface, 'Custom', 'ToV8'), # [Custom=ToV8] |
- 'has_custom_wrap': has_extended_attribute_value(interface, 'Custom', 'Wrap'), # [Custom=Wrap] |
'has_partial_interface': len(interface.partial_interfaces) > 0, |
'has_visit_dom_wrapper': has_visit_dom_wrapper, |
'header_includes': header_includes, |