| Index: Source/bindings/scripts/v8_callback_interface.py
|
| diff --git a/Source/bindings/scripts/v8_callback_interface.py b/Source/bindings/scripts/v8_callback_interface.py
|
| index 118770b6f0b3da5d42644dc95c0198562425c546..06c18f2b8097f5f3edffd8895c6c652bdbcd60da 100644
|
| --- a/Source/bindings/scripts/v8_callback_interface.py
|
| +++ b/Source/bindings/scripts/v8_callback_interface.py
|
| @@ -63,7 +63,7 @@ def cpp_type(idl_type):
|
| return 'void'
|
| # Callbacks use raw pointers, so used_as_argument=True
|
| usual_cpp_type = idl_type.cpp_type_args(used_as_argument=True)
|
| - if usual_cpp_type.startswith(('Vector', 'WillBeHeapVector')):
|
| + if usual_cpp_type.startswith(('Vector', 'HeapVector', 'WillBeHeapVector')):
|
| return 'const %s&' % usual_cpp_type
|
| return usual_cpp_type
|
|
|
|
|