Index: content/browser/renderer_host/media/video_capture_host.h |
=================================================================== |
--- content/browser/renderer_host/media/video_capture_host.h (revision 123165) |
+++ content/browser/renderer_host/media/video_capture_host.h (working copy) |
@@ -45,6 +45,8 @@ |
#include "content/public/browser/browser_message_filter.h" |
#include "ipc/ipc_message.h" |
+class AudioManager; |
+ |
namespace content { |
class ResourceContext; |
} // namespace content |
@@ -53,7 +55,8 @@ |
: public content::BrowserMessageFilter, |
public VideoCaptureControllerEventHandler { |
public: |
- explicit VideoCaptureHost(content::ResourceContext* resource_context); |
+ explicit VideoCaptureHost(content::ResourceContext* resource_context, |
+ AudioManager* audio_manager); |
// content::BrowserMessageFilter implementation. |
virtual void OnChannelClosing() OVERRIDE; |
@@ -142,6 +145,7 @@ |
// Used to get a pointer to VideoCaptureManager to start/stop capture devices. |
content::ResourceContext* resource_context_; |
+ AudioManager* audio_manager_; |
DISALLOW_COPY_AND_ASSIGN(VideoCaptureHost); |
}; |