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

Unified Diff: content/test/test_media_stream_client.cc

Issue 18261007: Migrate webkit/renderer/media/ to content/renderer/media/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win64 AGAIN Created 7 years, 5 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
« no previous file with comments | « content/test/test_media_stream_client.h ('k') | content/test/test_video_frame_provider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/test_media_stream_client.cc
diff --git a/content/test/test_media_stream_client.cc b/content/test/test_media_stream_client.cc
index cade78a12eea4c172abfb5e9f9e63a51d3d46bb5..1aa438506011747b2ddedb179c30bd401ac41691 100644
--- a/content/test/test_media_stream_client.cc
+++ b/content/test/test_media_stream_client.cc
@@ -4,13 +4,12 @@
#include "content/test/test_media_stream_client.h"
+#include "content/renderer/media/media_stream_audio_renderer.h"
#include "content/test/test_video_frame_provider.h"
#include "third_party/WebKit/public/platform/WebMediaStream.h"
#include "third_party/WebKit/public/platform/WebMediaStreamTrack.h"
-#include "third_party/WebKit/public/platform/WebVector.h"
#include "third_party/WebKit/public/web/WebMediaStreamRegistry.h"
#include "url/gurl.h"
-#include "webkit/renderer/media/media_stream_audio_renderer.h"
using namespace WebKit;
@@ -47,11 +46,10 @@ bool TestMediaStreamClient::IsMediaStream(const GURL& url) {
return IsMockMediaStreamWithVideo(url);
}
-scoped_refptr<webkit_media::VideoFrameProvider>
-TestMediaStreamClient::GetVideoFrameProvider(
+scoped_refptr<VideoFrameProvider> TestMediaStreamClient::GetVideoFrameProvider(
const GURL& url,
const base::Closure& error_cb,
- const webkit_media::VideoFrameProvider::RepaintCB& repaint_cb) {
+ const VideoFrameProvider::RepaintCB& repaint_cb) {
if (!IsMockMediaStreamWithVideo(url))
return NULL;
@@ -62,8 +60,8 @@ TestMediaStreamClient::GetVideoFrameProvider(
repaint_cb);
}
-scoped_refptr<webkit_media::MediaStreamAudioRenderer>
-TestMediaStreamClient::GetAudioRenderer(const GURL& url) {
+scoped_refptr<MediaStreamAudioRenderer> TestMediaStreamClient::GetAudioRenderer(
+ const GURL& url) {
return NULL;
}
« no previous file with comments | « content/test/test_media_stream_client.h ('k') | content/test/test_video_frame_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698