Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1126)

Side by Side Diff: ppapi/native_client/src/shared/ppapi_proxy/ppb_cursor_control.srpc

Issue 7740013: Cloning a bunch of stuff from the native_client repository at r6528 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_CursorControl calls from the plugin.
6 # See ppapi/c/ppb_cursor_control_dev.h for interface details.
7
8 {
9 'name': 'PpbCursorControlRpc',
10 'rpcs': [
11 {'name': 'PPB_CursorControl_SetCursor',
12 'inputs': [['instance', 'PP_Instance'], # PP_Instance
13 ['type', 'int32_t'], # PP_CursorType_Dev
14 ['custom_image', 'PP_Resource'], # PP_Resource
15 ['hot_spot', 'char[]'], # PP_Point
16 ],
17 'outputs': [['success', 'int32_t'], # PP_Bool
18 ]
19 },
20 {'name': 'PPB_CursorControl_LockCursor',
21 'inputs': [['instance', 'PP_Instance'], # PP_Instance
22 ],
23 'outputs': [['success', 'int32_t'], # PP_Bool
24 ]
25 },
26 {'name': 'PPB_CursorControl_UnlockCursor',
27 'inputs': [['instance', 'PP_Instance'], # PP_Instance
28 ],
29 'outputs': [['success', 'int32_t'], # PP_Bool
30 ]
31 },
32 {'name': 'PPB_CursorControl_HasCursorLock',
33 'inputs': [['instance', 'PP_Instance'], # PP_Instance
34 ],
35 'outputs': [['success', 'int32_t'], # PP_Bool
36 ]
37 },
38 {'name': 'PPB_CursorControl_CanLockCursor',
39 'inputs': [['instance', 'PP_Instance'], # PP_Instance
40 ],
41 'outputs': [['success', 'int32_t'], # PP_Bool
42 ]
43 },
44 ]
45 }
OLDNEW
« no previous file with comments | « ppapi/native_client/src/shared/ppapi_proxy/ppb_core.srpc ('k') | ppapi/native_client/src/shared/ppapi_proxy/ppb_file_io.srpc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698