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

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
Index: src/shared/ppapi_proxy/ppb_audio_config_dev.srpc
===================================================================
--- src/shared/ppapi_proxy/ppb_audio_config_dev.srpc (revision 4034)
+++ 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']
polina 2010/12/23 23:41:23 'outputs': [['is_audio_config', 'PP_Bool']
]
@@ -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'],
]

Powered by Google App Engine
This is Rietveld 408576698