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 the PPP_InputEvent interface. |
| 6 # See ppapi/c/ppp_input_event.h for interface details. |
| 7 { |
| 8 'name': 'PppInputEventRpc', |
| 9 'rpcs': [ |
| 10 {'name': 'PPP_InputEvent_HandleInputEvent', |
| 11 'inputs': [['instance', 'PP_Instance'], |
| 12 ['resource', 'PP_Resource'], |
| 13 ['event_data', 'char[]'], # InputEventData |
| 14 ['character_text', 'char[]'] # character text |
| 15 ], |
| 16 'outputs': [['handled', 'int32_t'] # PP_Bool |
| 17 ] |
| 18 }, |
| 19 ] |
| 20 } |
OLD | NEW |