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

Unified Diff: ppapi/proxy/ppb_audio_config_proxy.h

Issue 6279003: Move ppapi audio interface out of dev, but... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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
« no previous file with comments | « ppapi/proxy/ppapi_messages_internal.h ('k') | ppapi/proxy/ppb_audio_config_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_audio_config_proxy.h
===================================================================
--- ppapi/proxy/ppb_audio_config_proxy.h (revision 71486)
+++ ppapi/proxy/ppb_audio_config_proxy.h (working copy)
@@ -10,7 +10,7 @@
#include "ppapi/c/pp_resource.h"
#include "ppapi/proxy/interface_proxy.h"
-struct PPB_AudioConfig_Dev;
+struct PPB_AudioConfig;
namespace pp {
namespace proxy {
@@ -20,8 +20,8 @@
PPB_AudioConfig_Proxy(Dispatcher* dispatcher, const void* target_interface);
virtual ~PPB_AudioConfig_Proxy();
- const PPB_AudioConfig_Dev* ppb_audio_config_target() const {
- return static_cast<const PPB_AudioConfig_Dev*>(target_interface());
+ const PPB_AudioConfig* ppb_audio_config_target() const {
+ return static_cast<const PPB_AudioConfig*>(target_interface());
}
// InterfaceProxy implementation.
@@ -35,7 +35,9 @@
int32_t sample_rate,
uint32_t sample_frame_count,
PP_Resource* result);
- void OnMsgRecommendSampleFrameCount(uint32_t requested, uint32_t* result);
+ void OnMsgRecommendSampleFrameCount(int32_t sample_rate,
+ uint32_t requested,
+ uint32_t* result);
DISALLOW_COPY_AND_ASSIGN(PPB_AudioConfig_Proxy);
};
« no previous file with comments | « ppapi/proxy/ppapi_messages_internal.h ('k') | ppapi/proxy/ppb_audio_config_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698