OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2011 The Native Client Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 # RPC methods used to implement PPB_Messaging interface. |
| 6 # See ppapi/c/ppb_messaging.h for interface details. |
| 7 { |
| 8 'name': 'PpbMessagingRpc', |
| 9 'rpcs': [ |
| 10 {'name': 'PPB_Messaging_PostMessage', |
| 11 'inputs': [['instance', 'PP_Instance'], # PP_Instance |
| 12 ['message', 'char[]'], # PP_Var |
| 13 ], |
| 14 'outputs': [] |
| 15 }, |
| 16 ] |
| 17 } |
OLD | NEW |