| Index: mojo/public/bindings/pylib/parse/mojo_translate.py
|
| diff --git a/mojo/public/bindings/pylib/parse/mojo_translate.py b/mojo/public/bindings/pylib/parse/mojo_translate.py
|
| index f6e4462cf111b81aee6ba064452e233c4dc08248..9906ede8a563ac7d7605d79f546ceac6ce037725 100755
|
| --- a/mojo/public/bindings/pylib/parse/mojo_translate.py
|
| +++ b/mojo/public/bindings/pylib/parse/mojo_translate.py
|
| @@ -31,7 +31,8 @@ def MapKind(kind):
|
| 'handle': 'h',
|
| 'handle<data_pipe_consumer>': 'h:d:c',
|
| 'handle<data_pipe_producer>': 'h:d:p',
|
| - 'handle<message_pipe>': 'h:m'}
|
| + 'handle<message_pipe>': 'h:m',
|
| + 'handle<shared_buffer>': 'h:s'}
|
| if kind.endswith('[]'):
|
| return 'a:' + MapKind(kind[0:len(kind)-2])
|
| if kind in map_to_kind:
|
|
|