Chromium Code Reviews| Index: Source/bindings/scripts/v8_methods.py |
| diff --git a/Source/bindings/scripts/v8_methods.py b/Source/bindings/scripts/v8_methods.py |
| index 9c1f7c3f6db106426a22089c65db923fc68f063d..5f639d154f82c1dbb438bcdbbb8a8f4f6a59283b 100644 |
| --- a/Source/bindings/scripts/v8_methods.py |
| +++ b/Source/bindings/scripts/v8_methods.py |
| @@ -34,7 +34,7 @@ Design doc: http://www.chromium.org/developers/design-documents/idl-compiler |
| """ |
| from idl_definitions import IdlArgument |
| -from idl_types import IdlType, IdlUnionType, inherits_interface |
| +from idl_types import IdlTypeBase, IdlType, IdlUnionType, inherits_interface |
|
Nils Barth (inactive)
2014/08/14 13:55:00
Don't need IdlType here any longer.
Jens Widell
2014/08/14 13:59:20
Done.
|
| from v8_globals import includes |
| import v8_types |
| import v8_utilities |
| @@ -412,6 +412,6 @@ def argument_default_cpp_value(argument): |
| return None |
| return argument.idl_type.literal_cpp_value(argument.default_value) |
| -IdlType.union_arguments = property(lambda self: None) |
| +IdlTypeBase.union_arguments = None |
| IdlUnionType.union_arguments = property(union_arguments) |
| IdlArgument.default_cpp_value = property(argument_default_cpp_value) |