summaryrefslogtreecommitdiffstats
path: root/content/renderer/pepper/ppb_audio_impl.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-28 21:22:30 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-28 21:22:30 +0000
commitc0cf2f1c473b39e48fa88782416081fe8a3a8f16 (patch)
treef7c4514ce65956e34d08ffb01a68834819fd5429 /content/renderer/pepper/ppb_audio_impl.h
parent90b53bef6fd248d428c0c19194dbcebb3c70df5c (diff)
downloadchromium_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.h4
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_;