| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # RPC methods used to implement PPP_MouseLock_Dev calls to the plugin. | 5 # RPC methods used to implement PPP_MouseLock calls to the plugin. |
| 6 # See ppapi/c/dev/ppp_mouse_lock_dev.h for interface details. | 6 # See ppapi/c/ppp_mouse_lock.h for interface details. |
| 7 { | 7 { |
| 8 'name': 'PppMouseLockRpc', | 8 'name': 'PppMouseLockRpc', |
| 9 'rpcs': [ | 9 'rpcs': [ |
| 10 {'name': 'PPP_MouseLock_MouseLockLost', | 10 {'name': 'PPP_MouseLock_MouseLockLost', |
| 11 'inputs': [['instance', 'PP_Instance'], # PP_Instance | 11 'inputs': [['instance', 'PP_Instance'], # PP_Instance |
| 12 ], | 12 ], |
| 13 'outputs': [] | 13 'outputs': [] |
| 14 }, | 14 }, |
| 15 ] | 15 ] |
| 16 } | 16 } |
| OLD | NEW |