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

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: Don't inline AudioOutputDelegate(EventHandler) dtor. Created 3 years, 9 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..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,

Powered by Google App Engine
This is Rietveld 408576698