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

Unified Diff: ppapi/proxy/ppb_instance_proxy.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/proxy/ppb_instance_proxy.h
===================================================================
--- ppapi/proxy/ppb_instance_proxy.h (revision 122585)
+++ ppapi/proxy/ppb_instance_proxy.h (working copy)
@@ -52,6 +52,10 @@
virtual PP_Var ExecuteScript(PP_Instance instance,
PP_Var script,
PP_Var* exception) OVERRIDE;
+ virtual uint32_t GetAudioHardwareOutputSampleRate(PP_Instance instance)
+ OVERRIDE;
+ virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance)
+ OVERRIDE;
virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE;
virtual void NumberOfFindResultsChanged(PP_Instance instance,
int32_t total,
@@ -113,6 +117,10 @@
SerializedVarReceiveInput script,
SerializedVarOutParam out_exception,
SerializedVarReturnValue result);
+ void OnHostMsgGetAudioHardwareOutputSampleRate(PP_Instance instance,
+ uint32_t *result);
+ void OnHostMsgGetAudioHardwareOutputBufferSize(PP_Instance instance,
+ uint32_t *result);
void OnHostMsgGetDefaultCharSet(PP_Instance instance,
SerializedVarReturnValue result);
void OnHostMsgSetFullscreen(PP_Instance instance,

Powered by Google App Engine
This is Rietveld 408576698