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

Unified Diff: content/browser/renderer_host/media/audio_output_delegate_impl.h

Issue 2697793002: Add mojo interface+impl for audio stream control. (Closed)
Patch Set: Move to media Created 3 years, 10 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
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..cb016cbaad57e3dce1af3752a691699fdd922304 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/base/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,

Powered by Google App Engine
This is Rietveld 408576698