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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/untrusted/srpcgen/ppb_rpc.h

Issue 9129007: Work on improving PpbAudioConfig:RecommendSampleFrameCount (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/native_client/src/shared/ppapi_proxy/untrusted/srpcgen/ppb_rpc.h
===================================================================
--- ppapi/native_client/src/shared/ppapi_proxy/untrusted/srpcgen/ppb_rpc.h (revision 122585)
+++ ppapi/native_client/src/shared/ppapi_proxy/untrusted/srpcgen/ppb_rpc.h (working copy)
@@ -93,8 +93,14 @@
NaClSrpcChannel* channel,
PP_Resource resource,
int32_t* out_bool);
+ static NaClSrpcError PPB_AudioConfig_RecommendSampleFrameCount_1_0(
+ NaClSrpcChannel* channel,
+ int32_t request_sample_rate,
+ int32_t request_sample_frame_count,
+ int32_t* out_sample_frame_count);
static NaClSrpcError PPB_AudioConfig_RecommendSampleFrameCount(
NaClSrpcChannel* channel,
+ PP_Instance instance,
int32_t request_sample_rate,
int32_t request_sample_frame_count,
int32_t* out_sample_frame_count);
@@ -106,6 +112,10 @@
NaClSrpcChannel* channel,
PP_Resource resource,
int32_t* sample_frame_count);
+ static NaClSrpcError PPB_AudioConfig_RecommendSampleRate(
+ NaClSrpcChannel* channel,
+ PP_Instance instance,
+ int32_t* sample_rate);
private:
PpbAudioConfigRpcClient();

Powered by Google App Engine
This is Rietveld 408576698