| Index: mojo/public/tools/bindings/pylib/mojom/parse/translate.py
|
| diff --git a/mojo/public/tools/bindings/pylib/mojom/parse/translate.py b/mojo/public/tools/bindings/pylib/mojom/parse/translate.py
|
| index 1a05e80aa668cea14bdcfae074688dbfb9029a0b..7fd0a93cc8179bb28f252584e667f0808571558e 100644
|
| --- a/mojo/public/tools/bindings/pylib/mojom/parse/translate.py
|
| +++ b/mojo/public/tools/bindings/pylib/mojom/parse/translate.py
|
| @@ -83,7 +83,7 @@ def _MapStruct(tree):
|
| def _MapInterface(tree):
|
| interface = {}
|
| interface['name'] = tree[1]
|
| - interface['peer'] = _GetAttribute(tree[2], 'Peer')
|
| + interface['client'] = _GetAttribute(tree[2], 'Client')
|
| interface['methods'] = _MapTree(_MapMethod, tree[3], 'METHOD')
|
| interface['enums'] = _MapTree(_MapEnum, tree[3], 'ENUM')
|
| return interface
|
|
|