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 PPB_Zoom interface. |
| 6 # See ppapi/c/dev/ppb_zoom_dev.h for interface details. |
| 7 { |
| 8 'name': 'PpbZoomRpc', |
| 9 'rpcs': [ |
| 10 {'name': 'PPB_Zoom_ZoomChanged', |
| 11 'inputs': [['instance', 'PP_Instance'], |
| 12 ['factor', 'double'], |
| 13 ], |
| 14 'outputs': [ |
| 15 ] |
| 16 }, |
| 17 {'name': 'PPB_Zoom_ZoomLimitsChanged', |
| 18 'inputs': [['instance', 'PP_Instance'], |
| 19 ['minimum_factor', 'double'], |
| 20 ['maximum_factor', 'double'], |
| 21 ], |
| 22 'outputs': [ |
| 23 ] |
| 24 }, |
| 25 ] |
| 26 } |
OLD | NEW |