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

Unified Diff: media/audio/audio_output_dispatcher.h

Issue 9805001: Move media/audio files into media namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix various compiler errors Created 8 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: media/audio/audio_output_dispatcher.h
diff --git a/media/audio/audio_output_dispatcher.h b/media/audio/audio_output_dispatcher.h
index cf01a31b0a74a38e9cefc0e0456c1139e38e75f3..7942aa805953da6fd09903c54ebd534d9c6eced0 100644
--- a/media/audio/audio_output_dispatcher.h
+++ b/media/audio/audio_output_dispatcher.h
@@ -32,9 +32,13 @@
#include "media/audio/audio_manager.h"
#include "media/audio/audio_parameters.h"
-class AudioOutputStream;
+class AudioOutputProxyTest;
class MessageLoop;
+namespace media {
+
+class AudioOutputStream;
+
class MEDIA_EXPORT AudioOutputDispatcher
: public base::RefCountedThreadSafe<AudioOutputDispatcher> {
public:
@@ -70,7 +74,8 @@ class MEDIA_EXPORT AudioOutputDispatcher
void Shutdown();
private:
- friend class AudioOutputProxyTest;
+ // XXX(vrk): See comment in AudioOutputProxyTest.
scherkus (not reviewing) 2012/03/21 08:50:27 ???
vrk (LEFT CHROMIUM) 2012/03/21 20:17:48 Oh, I was just trying to explain why AudioOutputPr
+ friend class ::AudioOutputProxyTest;
// Creates a new physical output stream, opens it and pushes to
// |idle_streams_|. Returns false if the stream couldn't be created or
@@ -107,4 +112,6 @@ class MEDIA_EXPORT AudioOutputDispatcher
DISALLOW_COPY_AND_ASSIGN(AudioOutputDispatcher);
};
+} // namespace media
+
#endif // MEDIA_AUDIO_AUDIO_OUTPUT_DISPATCHER_H_

Powered by Google App Engine
This is Rietveld 408576698