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_Scrollbar calls to the plugin. |
| 6 # See ppapi/c/dev/ppp_scrollbar_dev.h for interface details. |
| 7 { |
| 8 'name': 'PppScrollbarRpc', |
| 9 'rpcs': [ |
| 10 {'name': 'PPP_Scrollbar_ValueChanged', |
| 11 'inputs': [['instance', 'PP_Instance'], |
| 12 ['scrollbar', 'PP_Resource'], |
| 13 ['value', 'int32_t'], # uint32_t |
| 14 ], |
| 15 'outputs': [ |
| 16 ] |
| 17 }, |
| 18 {'name': 'PPP_Scrollbar_OverlayChanged', |
| 19 'inputs': [['instance', 'PP_Instance'], |
| 20 ['scrollbar', 'PP_Resource'], |
| 21 ['overlay', 'int32_t'], # PP_Bool |
| 22 ], |
| 23 'outputs': [ |
| 24 ] |
| 25 }, |
| 26 ] |
| 27 } |
OLD | NEW |