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

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

Issue 39493002: IDL compiler: void() methods (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Revised Created 7 years, 2 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
« no previous file with comments | « no previous file | Source/bindings/scripts/unstable/v8_methods.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | Source/bindings/scripts/unstable/v8_methods.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698