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

Unified Diff: src/shared/ppapi_proxy/ppb_core.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
Index: src/shared/ppapi_proxy/ppb_core.srpc
===================================================================
--- src/shared/ppapi_proxy/ppb_core.srpc (revision 4034)
+++ src/shared/ppapi_proxy/ppb_core.srpc (working copy)
@@ -9,13 +9,13 @@
'rpcs': [
# Implements calls to increment the reference count on a resource.
{'name': 'PPB_Core_AddRefResource',
- 'inputs': [['resource', 'int64_t'],
+ 'inputs': [['resource', 'PP_Resource'],
],
'outputs': []
},
# Implements calls to decrement the reference count on a resource.
{'name': 'PPB_Core_ReleaseResource',
- 'inputs': [['resource', 'int64_t'],
+ 'inputs': [['resource', 'PP_Resource'],
],
'outputs': []
},
@@ -23,7 +23,7 @@
# resource. This does not exist in PPB_Core, we implement it as an
# optimization.
{'name': 'ReleaseResourceMultipleTimes',
- 'inputs': [['resource', 'int64_t'],
+ 'inputs': [['resource', 'PP_Resource'],
['count', 'int32_t']
],
'outputs': []

Powered by Google App Engine
This is Rietveld 408576698