Index: content/browser/renderer_host/media/audio_input_renderer_host.h |
diff --git a/content/browser/renderer_host/media/audio_input_renderer_host.h b/content/browser/renderer_host/media/audio_input_renderer_host.h |
index 378ef16b1b24972f3bd1f44faf12dc9ebdc95678..0fc6c42349429f9ba8623e565d701c50971b003d 100644 |
--- a/content/browser/renderer_host/media/audio_input_renderer_host.h |
+++ b/content/browser/renderer_host/media/audio_input_renderer_host.h |
@@ -68,8 +68,10 @@ namespace content { |
class ResourceContext; |
} |
+namespace media { |
class AudioManager; |
class AudioParameters; |
+} |
class CONTENT_EXPORT AudioInputRendererHost |
: public content::BrowserMessageFilter, |
@@ -99,7 +101,7 @@ class CONTENT_EXPORT AudioInputRendererHost |
// Called from UI thread from the owner of this object. |
AudioInputRendererHost(content::ResourceContext* resource_context, |
- AudioManager* audio_manager); |
+ media::AudioManager* audio_manager); |
// content::BrowserMessageFilter implementation. |
virtual void OnChannelClosing() OVERRIDE; |
@@ -139,7 +141,7 @@ class CONTENT_EXPORT AudioInputRendererHost |
// successful this object would keep an internal entry of the stream for the |
// required properties. |
void OnCreateStream(int stream_id, |
- const AudioParameters& params, |
+ const media::AudioParameters& params, |
const std::string& device_id); |
// Record the audio input stream referenced by |stream_id|. |
@@ -202,7 +204,7 @@ class CONTENT_EXPORT AudioInputRendererHost |
// Used to get an instance of AudioInputDeviceManager. |
content::ResourceContext* resource_context_; |
- AudioManager* audio_manager_; |
+ media::AudioManager* audio_manager_; |
// A map of stream IDs to audio sources. |
typedef std::map<int, AudioEntry*> AudioEntryMap; |