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

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

Issue 9814015: Add new MouseCursor interface for setting the mouse cursor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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_MouseCursor calls from the plugin.
6
7 {
8 'name': 'PpbMouseCursorRpc',
9 'rpcs': [
10 {'name': 'PPB_MouseCursor_SetCursor',
11 'inputs': [['instance', 'PP_Instance'], # PP_Instance
12 ['type', 'int32_t'], # PP_MouseCursor_Type
13 ['custom_image', 'PP_Resource'], # PP_Resource
14 ['hot_spot', 'char[]'], # PP_Point
15 ],
16 'outputs': [['success', 'int32_t'], # PP_Bool
17 ]
18 },
19 ]
20 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698