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

Unified Diff: webkit/support/test_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 the nits from Andrew and fixed the chromeOS testbot error 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/support/test_media_stream_client.h
diff --git a/webkit/support/test_media_stream_client.h b/webkit/support/test_media_stream_client.h
index 500dd2af01efdf41c459cbea08f85ef12fa48598..db0e53f3160e73beaadb208c6c64aab5f6355a55 100644
--- a/webkit/support/test_media_stream_client.h
+++ b/webkit/support/test_media_stream_client.h
@@ -13,6 +13,10 @@
#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h"
#include "webkit/media/media_stream_client.h"
+namespace webkit_media {
+class MediaStreamAudioRenderer;
+}
+
namespace webkit_support {
class TestMediaStreamClient : public webkit_media::MediaStreamClient {
@@ -29,6 +33,8 @@ class TestMediaStreamClient : public webkit_media::MediaStreamClient {
virtual scoped_refptr<media::VideoDecoder> GetVideoDecoder(
const GURL& url,
media::MessageLoopFactory* message_loop_factory) OVERRIDE;
+ virtual scoped_refptr<webkit_media::MediaStreamAudioRenderer>
+ GetAudioRenderer(const GURL& url) OVERRIDE;
};
} // namespace webkit_support

Powered by Google App Engine
This is Rietveld 408576698