| 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_Widget calls to the plugin. | |
| 6 # See ppapi/c/dev/ppp_widget_dev.h for interface details. | |
| 7 { | |
| 8 'name': 'PppWidgetRpc', | |
| 9 'rpcs': [ | |
| 10 {'name': 'PPP_Widget_Invalidate', | |
| 11 'inputs': [['instance', 'PP_Instance'], | |
| 12 ['widget', 'PP_Resource'], | |
| 13 ['dirty_rect', 'char[]'], # PP_Rect | |
| 14 ], | |
| 15 'outputs': [ | |
| 16 ] | |
| 17 }, | |
| 18 ] | |
| 19 } | |
| OLD | NEW |