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

Side by Side Diff: ppapi/native_client/src/shared/ppapi_proxy/ppb_instance.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, 4 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) 2010 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_Instance interface.
6 # See ppapi/c/ppb_instance.h for interface details.
7 {
8 'name': 'PpbInstanceRpc',
9 'rpcs': [
10 {'name': 'PPB_Instance_BindGraphics',
11 'inputs': [['instance', 'PP_Instance'], # PP_Instance
12 ['graphics_device', 'PP_Resource'], # PP_Resource
13 ],
14 'outputs': [['success', 'int32_t'], # PP_Bool
15 ]
16 },
17 {'name': 'PPB_Instance_IsFullFrame',
18 'inputs': [['instance', 'PP_Instance'], # PP_Instance
19 ],
20 'outputs': [['is_full_frame', 'int32_t'], # PP_Bool
21 ]
22 },
23 ]
24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698