Index: Source/bindings/scripts/v8_types.py |
diff --git a/Source/bindings/scripts/v8_types.py b/Source/bindings/scripts/v8_types.py |
index 26fe4dcd8959538a4e4cbc32c17b6c72931d2f9c..e098593cf076746b776c577bca56b051317f35af 100644 |
--- a/Source/bindings/scripts/v8_types.py |
+++ b/Source/bindings/scripts/v8_types.py |
@@ -442,6 +442,8 @@ def impl_includes_for_type(idl_type, interfaces_info): |
includes_for_type.add(interface_info['include_path']) |
if base_idl_type in INCLUDES_FOR_TYPE: |
includes_for_type.update(INCLUDES_FOR_TYPE[base_idl_type]) |
+ if idl_type.is_typed_array: |
+ return set(['core/dom/DOMTypedArray.h']) |
return includes_for_type |
IdlTypeBase.impl_includes_for_type = impl_includes_for_type |