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

Unified Diff: ppapi/proxy/ppb_audio_proxy.h

Issue 6341015: Fix some bugs with incorrect ! (both missing and extra) in the proxy error ha... (Closed) Base URL: svn://svn.chromium.org/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/ppb_audio_config_proxy.cc ('k') | ppapi/proxy/ppb_audio_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_audio_proxy.h
===================================================================
--- ppapi/proxy/ppb_audio_proxy.h (revision 72880)
+++ ppapi/proxy/ppb_audio_proxy.h (working copy)
@@ -21,7 +21,6 @@
namespace pp {
namespace proxy {
-struct PPBAudio_NotifyAudioStreamCreated_Params;
class HostResource;
class PPB_Audio_Proxy : public InterfaceProxy {
@@ -46,8 +45,11 @@
void OnMsgStartOrStop(const HostResource& audio_id, bool play);
// Renderer->plugin message handlers.
- void OnMsgNotifyAudioStreamCreated(
- const PPBAudio_NotifyAudioStreamCreated_Params& params);
+ void OnMsgNotifyAudioStreamCreated(const HostResource& audio_id,
+ int32_t result_code,
+ IPC::PlatformFileForTransit socket_handle,
+ base::SharedMemoryHandle handle,
+ uint32_t length);
void AudioChannelConnected(int32_t result,
const HostResource& resource);
« no previous file with comments | « ppapi/proxy/ppb_audio_config_proxy.cc ('k') | ppapi/proxy/ppb_audio_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698