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

Unified Diff: src/shared/ppapi_proxy/ppb_instance.srpc

Issue 5974006: Convert srpc definitions from using int64 to using PP_Instance, PP_Module, an... (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 10 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/shared/ppapi_proxy/ppb_image_data.srpc ('k') | src/shared/ppapi_proxy/ppb_rpc_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/ppapi_proxy/ppb_instance.srpc
===================================================================
--- src/shared/ppapi_proxy/ppb_instance.srpc (revision 4040)
+++ src/shared/ppapi_proxy/ppb_instance.srpc (working copy)
@@ -8,32 +8,32 @@
'name': 'PpbInstanceRpc',
'rpcs': [
{'name': 'PPB_Instance_GetWindowObject',
- 'inputs': [['instance', 'int64_t'], # PP_Instance
+ 'inputs': [['instance', 'PP_Instance'], # PP_Instance
],
'outputs': [['window', 'char[]'], # PP_Var
]
},
{'name': 'PPB_Instance_GetOwnerElementObject',
- 'inputs': [['instance', 'int64_t'], # PP_Instance
+ 'inputs': [['instance', 'PP_Instance'], # PP_Instance
],
'outputs': [['owner', 'char[]'], # PP_Var
]
},
{'name': 'PPB_Instance_BindGraphics',
- 'inputs': [['instance', 'int64_t'], # PP_Instance
- ['graphics_device', 'int64_t'], # PP_Resource
+ 'inputs': [['instance', 'PP_Instance'], # PP_Instance
+ ['graphics_device', 'PP_Resource'], # PP_Resource
],
'outputs': [['success', 'int32_t'], # PP_Bool
]
},
{'name': 'PPB_Instance_IsFullFrame',
- 'inputs': [['instance', 'int64_t'], # PP_Instance
+ 'inputs': [['instance', 'PP_Instance'], # PP_Instance
],
'outputs': [['is_full_frame', 'int32_t'], # PP_Bool
]
},
{'name': 'PPB_Instance_ExecuteScript',
- 'inputs': [['instance', 'int64_t'], # PP_Instance
+ 'inputs': [['instance', 'PP_Instance'], # PP_Instance
['script', 'char[]' ], # PP_Var
['exception_in', 'char[]'], # PP_Var*
],
Property changes on: src/shared/ppapi_proxy/ppb_instance.srpc
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « src/shared/ppapi_proxy/ppb_image_data.srpc ('k') | src/shared/ppapi_proxy/ppb_rpc_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698