OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2010 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 method that supports invocation of plugin-side callbacks from the browser. |
| 6 { |
| 7 'name': 'CompletionCallbackRpc', |
| 8 'rpcs': [ |
| 9 {'name': 'RunCompletionCallback', |
| 10 'inputs': [['callback_id', 'int32_t'], |
| 11 ['result', 'int32_t'], |
| 12 ['read_buffer', 'char[]' ], |
| 13 ], |
| 14 'outputs': [] |
| 15 }, |
| 16 ] |
| 17 } |
OLD | NEW |