diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-28 21:22:30 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-28 21:22:30 +0000 |
commit | c0cf2f1c473b39e48fa88782416081fe8a3a8f16 (patch) | |
tree | f7c4514ce65956e34d08ffb01a68834819fd5429 /content/renderer/pepper/ppb_audio_impl.h | |
parent | 90b53bef6fd248d428c0c19194dbcebb3c70df5c (diff) | |
download | chromium_src-c0cf2f1c473b39e48fa88782416081fe8a3a8f16.zip chromium_src-c0cf2f1c473b39e48fa88782416081fe8a3a8f16.tar.gz chromium_src-c0cf2f1c473b39e48fa88782416081fe8a3a8f16.tar.bz2 |
Get rid of PluginDelegate::PlatformAudioOutputClient and PluginDelegate::PlatformAudioOutput abstractions now that pepper plugin code is in content.
BUG=263054
R=scottmg@chromium.org
Review URL: https://codereview.chromium.org/20484003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@214139 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/pepper/ppb_audio_impl.h')
-rw-r--r-- | content/renderer/pepper/ppb_audio_impl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/renderer/pepper/ppb_audio_impl.h b/content/renderer/pepper/ppb_audio_impl.h index 4c30974..62a4dd2 100644 --- a/content/renderer/pepper/ppb_audio_impl.h +++ b/content/renderer/pepper/ppb_audio_impl.h @@ -10,7 +10,6 @@ #include "base/memory/shared_memory.h" #include "base/sync_socket.h" #include "content/renderer/pepper/audio_helper.h" -#include "content/renderer/pepper/plugin_delegate.h" #include "ppapi/c/pp_completion_callback.h" #include "ppapi/c/ppb_audio.h" #include "ppapi/c/ppb_audio_config.h" @@ -20,6 +19,7 @@ #include "ppapi/shared_impl/scoped_pp_resource.h" namespace content { +class PepperPlatformAudioOutput; // Some of the backend functionality of this class is implemented by the // PPB_Audio_Shared so it can be shared with the proxy. @@ -71,7 +71,7 @@ class PPB_Audio_Impl : public ::ppapi::Resource, // PluginDelegate audio object that we delegate audio IPC through. We don't // own this pointer but are responsible for calling Shutdown on it. - PluginDelegate::PlatformAudioOutput* audio_; + PepperPlatformAudioOutput* audio_; // Track frame count for passing on to PPB_Audio_Shared::SetStreamInfo(). int sample_frame_count_; |