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_MouseCursor calls from the plugin. |
| 6 |
| 7 { |
| 8 'name': 'PpbMouseCursorRpc', |
| 9 'rpcs': [ |
| 10 {'name': 'PPB_MouseCursor_SetCursor', |
| 11 'inputs': [['instance', 'PP_Instance'], # PP_Instance |
| 12 ['type', 'int32_t'], # PP_MouseCursor_Type |
| 13 ['custom_image', 'PP_Resource'], # PP_Resource |
| 14 ['hot_spot', 'char[]'], # PP_Point |
| 15 ], |
| 16 'outputs': [['success', 'int32_t'], # PP_Bool |
| 17 ] |
| 18 }, |
| 19 ] |
| 20 } |
OLD | NEW |