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

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

Issue 360703003: Implement Blink-in-JS for DOM methods (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 | « Source/bindings/scripts/v8_methods.py ('k') | Source/bindings/scripts/v8_utilities.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/scripts/v8_types.py
diff --git a/Source/bindings/scripts/v8_types.py b/Source/bindings/scripts/v8_types.py
index b51c7325434935c210f401479a9fbb55b88e11cf..9417bf253ce1b079e00b4b2e70fe5bbc01eff4c8 100644
--- a/Source/bindings/scripts/v8_types.py
+++ b/Source/bindings/scripts/v8_types.py
@@ -74,6 +74,7 @@ TYPED_ARRAYS = {
IdlType.is_typed_array_type = property(
lambda self: self.base_type in TYPED_ARRAYS)
+IdlUnionType.is_typed_array_type = False
IdlType.is_wrapper_type = property(
@@ -191,7 +192,7 @@ def cpp_type(idl_type, extended_attributes=None, raw_type=False, used_as_argumen
return base_idl_type + '*'
-def cpp_type_union(idl_type, extended_attributes=None):
+def cpp_type_union(idl_type, extended_attributes=None, raw_type=False):
return (member_type.cpp_type for member_type in idl_type.member_types)
« no previous file with comments | « Source/bindings/scripts/v8_methods.py ('k') | Source/bindings/scripts/v8_utilities.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698