| Index: third_party/WebKit/Source/bindings/scripts/idl_types.py
|
| diff --git a/third_party/WebKit/Source/bindings/scripts/idl_types.py b/third_party/WebKit/Source/bindings/scripts/idl_types.py
|
| index d218ab042a259b16d82d9af7c6499ca854456135..104e020e0963c2d36082e593104011c41c378e93 100644
|
| --- a/third_party/WebKit/Source/bindings/scripts/idl_types.py
|
| +++ b/third_party/WebKit/Source/bindings/scripts/idl_types.py
|
| @@ -379,7 +379,7 @@ class IdlUnionType(IdlTypeBase):
|
|
|
| def resolve_typedefs(self, typedefs):
|
| self.member_types = [
|
| - typedefs.get(member_type, member_type)
|
| + member_type.resolve_typedefs(typedefs)
|
| for member_type in self.member_types]
|
| return self
|
|
|
|
|