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

Unified Diff: Source/bindings/scripts/v8_interface.py

Issue 721383003: bindings: Retires ScriptWrappableBase mostly. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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: Source/bindings/scripts/v8_interface.py
diff --git a/Source/bindings/scripts/v8_interface.py b/Source/bindings/scripts/v8_interface.py
index 7c26c9fb785273b039266db4d7e9df3f5e04ed3d..4f860e7de990d314dedffd71223ec257da3ec23e 100644
--- a/Source/bindings/scripts/v8_interface.py
+++ b/Source/bindings/scripts/v8_interface.py
@@ -163,9 +163,6 @@ def interface_context(interface):
for set_wrapper_reference_to in set_wrapper_reference_to_list:
set_wrapper_reference_to['idl_type'].add_includes_for_type()
- # [NotScriptWrappable]
- is_script_wrappable = 'NotScriptWrappable' not in extended_attributes
-
# [SetWrapperReferenceFrom]
has_visit_dom_wrapper = (
has_extended_attribute_value(interface, 'Custom', 'VisitDOMWrapper') or
@@ -204,7 +201,6 @@ def interface_context(interface):
'is_exception': interface.is_exception,
'is_node': inherits_interface(interface.name, 'Node'),
'is_partial': interface.is_partial,
- 'is_script_wrappable': is_script_wrappable,
'is_typed_array_type': is_typed_array_type,
'iterator_method': iterator_method,
'lifetime': 'Dependent'

Powered by Google App Engine
This is Rietveld 408576698