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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/trusted/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/trusted/srpcgen/ppb_rpc.h
===================================================================
--- ppapi/native_client/src/shared/ppapi_proxy/trusted/srpcgen/ppb_rpc.h (revision 122585)
+++ ppapi/native_client/src/shared/ppapi_proxy/trusted/srpcgen/ppb_rpc.h (working copy)
@@ -103,9 +103,16 @@
NaClSrpcClosure* done,
PP_Resource resource,
int32_t* out_bool);
+ static void PPB_AudioConfig_RecommendSampleFrameCount_1_0(
+ NaClSrpcRpc* rpc,
+ NaClSrpcClosure* done,
+ int32_t request_sample_rate,
+ int32_t request_sample_frame_count,
+ int32_t* out_sample_frame_count);
static void PPB_AudioConfig_RecommendSampleFrameCount(
NaClSrpcRpc* rpc,
NaClSrpcClosure* done,
+ PP_Instance instance,
int32_t request_sample_rate,
int32_t request_sample_frame_count,
int32_t* out_sample_frame_count);
@@ -119,6 +126,11 @@
NaClSrpcClosure* done,
PP_Resource resource,
int32_t* sample_frame_count);
+ static void PPB_AudioConfig_RecommendSampleRate(
+ NaClSrpcRpc* rpc,
+ NaClSrpcClosure* done,
+ PP_Instance instance,
+ int32_t* sample_rate);
private:
PpbAudioConfigRpcServer();

Powered by Google App Engine
This is Rietveld 408576698