Index: Source/bindings/scripts/unstable/v8_interface.py |
diff --git a/Source/bindings/scripts/unstable/v8_interface.py b/Source/bindings/scripts/unstable/v8_interface.py |
index 667c7d297e8cf6f7c99951c64499bcbd91ac0fad..7e32839cbc311b25fada9cee59f040e7b942190e 100644 |
--- a/Source/bindings/scripts/unstable/v8_interface.py |
+++ b/Source/bindings/scripts/unstable/v8_interface.py |
@@ -37,6 +37,7 @@ For details, see bug http://crbug.com/239771 |
import v8_attributes |
from v8_globals import includes |
+import v8_methods |
from v8_utilities import cpp_name, runtime_enabled_function_name, v8_class_name |
@@ -71,6 +72,7 @@ def generate_interface(interface): |
'header_includes': INTERFACE_H_INCLUDES, |
} |
template_contents.update(v8_attributes.generate_attributes(interface)) |
+ template_contents.update(v8_methods.generate_methods(interface)) |
return template_contents |