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

Unified Diff: src/shared/ppapi_proxy/ppb_audio_config_dev.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.srpc ('k') | src/shared/ppapi_proxy/ppb_audio_dev.srpc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/ppapi_proxy/ppb_audio_config_dev.srpc
===================================================================
--- src/shared/ppapi_proxy/ppb_audio_config_dev.srpc (revision 4040)
+++ src/shared/ppapi_proxy/ppb_audio_config_dev.srpc (working copy)
@@ -10,16 +10,16 @@
'rpcs': [
# Implements a call to create an audio configuration for stereo output.
{'name': 'PPB_AudioConfig_Dev_CreateStereo16Bit',
- 'inputs': [['module', 'int64_t'],
+ 'inputs': [['module', 'PP_Module'],
['sample_rate', 'int32_t'],
['sample_frame_count', 'int32_t'],
],
- 'outputs': [['resource', 'int64_t'],
+ 'outputs': [['resource', 'PP_Resource'],
]
},
# Implements a call to check if this is an AudioConfig.
{'name': 'PPB_AudioConfig_Dev_IsAudioConfig',
- 'inputs': [['resource', 'int64_t'],
+ 'inputs': [['resource', 'PP_Resource'],
],
'outputs': [['out_bool', 'int32_t']
]
@@ -33,14 +33,14 @@
},
# Implements a call to get the sample rate.
{'name': 'PPB_AudioConfig_Dev_GetSampleRate',
- 'inputs': [['resource', 'int64_t'],
+ 'inputs': [['resource', 'PP_Resource'],
],
'outputs': [['sample_rate', 'int32_t']
]
},
# Implements a call to get the obtained sample frame count.
{'name': 'PPB_AudioConfig_Dev_GetSampleFrameCount',
- 'inputs': [['resource', 'int64_t'],
+ 'inputs': [['resource', 'PP_Resource'],
],
'outputs': [['sample_frame_count', 'int32_t'],
]
Property changes on: src/shared/ppapi_proxy/ppb_audio_config_dev.srpc
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « src/shared/ppapi_proxy/ppb.srpc ('k') | src/shared/ppapi_proxy/ppb_audio_dev.srpc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698