| Index: content/browser/renderer_host/media/audio_output_delegate_impl.h
|
| diff --git a/content/browser/renderer_host/media/audio_output_delegate_impl.h b/content/browser/renderer_host/media/audio_output_delegate_impl.h
|
| index b83e789f06d76b6ffac017f887cabe6557b3f067..e813479975610fa1f37b3ae36bc59967d3bd2f32 100644
|
| --- a/content/browser/renderer_host/media/audio_output_delegate_impl.h
|
| +++ b/content/browser/renderer_host/media/audio_output_delegate_impl.h
|
| @@ -10,8 +10,8 @@
|
|
|
| #include "base/macros.h"
|
| #include "base/memory/weak_ptr.h"
|
| -#include "content/browser/renderer_host/media/audio_output_delegate.h"
|
| #include "content/common/content_export.h"
|
| +#include "media/audio/audio_output_delegate.h"
|
|
|
| namespace content {
|
| class AudioMirroringManager;
|
| @@ -30,9 +30,10 @@ namespace content {
|
|
|
| // This class, except for the AudioOutputDelegateImpl::EventHandler
|
| // implementation, is operated on the IO thread.
|
| -class CONTENT_EXPORT AudioOutputDelegateImpl : public AudioOutputDelegate {
|
| +class CONTENT_EXPORT AudioOutputDelegateImpl
|
| + : public media::AudioOutputDelegate {
|
| public:
|
| - AudioOutputDelegateImpl(AudioOutputDelegate::EventHandler* handler,
|
| + AudioOutputDelegateImpl(EventHandler* handler,
|
| media::AudioManager* audio_manager,
|
| std::unique_ptr<media::AudioLog> audio_log,
|
| AudioMirroringManager* mirroring_manager,
|
|
|