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 PPP_Selection calls to the plugin. |
| 6 # See ppapi/c/dev/ppp_selection_dev.h for interface details. |
| 7 { |
| 8 'name': 'PppSelectionRpc', |
| 9 'rpcs': [ |
| 10 {'name': 'PPP_Selection_GetSelectedText', |
| 11 'inputs': [['instance', 'PP_Instance'], |
| 12 ['html', 'int32_t'], # PP_Bool |
| 13 ], |
| 14 'outputs': [['selected_text', 'char[]'], # PP_Var |
| 15 ], |
| 16 }, |
| 17 ] |
| 18 } |
OLD | NEW |