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

Unified Diff: webkit/media/media_stream_client.h

Issue 11270012: Adding audio support to the new webmediaplyer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressed Wei's comments and fixed the content_unittest Created 8 years, 2 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: webkit/media/media_stream_client.h
diff --git a/webkit/media/media_stream_client.h b/webkit/media/media_stream_client.h
index edbb9b81e156182d67055ab6a5d4bb67375b91d0..0b3e2eeefae502796f60077ed37a4d0f3f3174e5 100644
--- a/webkit/media/media_stream_client.h
+++ b/webkit/media/media_stream_client.h
@@ -14,6 +14,7 @@ class GURL;
namespace media {
class VideoDecoder;
class MessageLoopFactory;
+class RtcAudioRenderer;
}
namespace webkit_media {
@@ -34,6 +35,9 @@ class MediaStreamClient {
const GURL& url,
media::MessageLoopFactory* message_loop_factory) = 0;
+ virtual scoped_refptr<media::RtcAudioRenderer> GetAudioRenderer(
+ const GURL& url) = 0;
+
protected:
virtual ~MediaStreamClient() {}
};

Powered by Google App Engine
This is Rietveld 408576698