Index: content/browser/renderer_host/media/audio_renderer_host.h |
diff --git a/content/browser/renderer_host/media/audio_renderer_host.h b/content/browser/renderer_host/media/audio_renderer_host.h |
index 0880e3b9cd3bc43de128ea526f2a8157eb97be58..7e15d47b86ad166aca298bd2808d7020a528396b 100644 |
--- a/content/browser/renderer_host/media/audio_renderer_host.h |
+++ b/content/browser/renderer_host/media/audio_renderer_host.h |
@@ -53,14 +53,16 @@ |
#include "media/audio/audio_output_controller.h" |
#include "media/audio/simple_sources.h" |
-class AudioManager; |
-class AudioParameters; |
- |
namespace content { |
class MediaObserver; |
class ResourceContext; |
} // namespace content |
+namespace media { |
+class AudioManager; |
+class AudioParameters; |
+} |
+ |
class CONTENT_EXPORT AudioRendererHost |
: public content::BrowserMessageFilter, |
public media::AudioOutputController::EventHandler { |
@@ -90,7 +92,7 @@ class CONTENT_EXPORT AudioRendererHost |
// Called from UI thread from the owner of this object. |
AudioRendererHost(content::ResourceContext* resource_context, |
- AudioManager* audio_manager); |
+ media::AudioManager* audio_manager); |
// content::BrowserMessageFilter implementation. |
virtual void OnChannelClosing() OVERRIDE; |
@@ -121,7 +123,7 @@ class CONTENT_EXPORT AudioRendererHost |
// Creates an audio output stream with the specified format. If this call is |
// successful this object would keep an internal entry of the stream for the |
// required properties. |
- void OnCreateStream(int stream_id, const AudioParameters& params); |
+ void OnCreateStream(int stream_id, const media::AudioParameters& params); |
// Play the audio stream referenced by |stream_id|. |
void OnPlayStream(int stream_id); |
@@ -185,7 +187,7 @@ class CONTENT_EXPORT AudioRendererHost |
AudioEntryMap audio_entries_; |
content::ResourceContext* resource_context_; |
- AudioManager* audio_manager_; |
+ media::AudioManager* audio_manager_; |
DISALLOW_COPY_AND_ASSIGN(AudioRendererHost); |
}; |