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

Unified Diff: content/test/test_media_stream_client.h

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/renderer/renderer_webkitplatformsupport_impl.cc ('k') | content/test/test_media_stream_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/test_media_stream_client.h
diff --git a/content/test/test_media_stream_client.h b/content/test/test_media_stream_client.h
index ea872e2843f1387e3e5fae072e12650bb9830e6e..e6b8f9390c9d24f5a945c90e5056027464c6442f 100644
--- a/content/test/test_media_stream_client.h
+++ b/content/test/test_media_stream_client.h
@@ -7,27 +7,27 @@
#include "base/callback_forward.h"
#include "content/public/renderer/render_view_observer.h"
+#include "content/renderer/media/media_stream_client.h"
#include "third_party/WebKit/public/platform/WebURL.h"
-#include "webkit/renderer/media/media_stream_client.h"
namespace content {
-// TestMediaStreamClient is a mock implementation of
-// webkit_media::MediaStreamClient used when running layout tests.
+// TestMediaStreamClient is a mock implementation of MediaStreamClient used when
+// running layout tests.
class TestMediaStreamClient : public RenderViewObserver,
- public webkit_media::MediaStreamClient {
+ public MediaStreamClient {
public:
explicit TestMediaStreamClient(RenderView* render_view);
virtual ~TestMediaStreamClient();
- // webkit_media::MediaStreamClient implementation.
+ // MediaStreamClient implementation.
virtual bool IsMediaStream(const GURL& url) OVERRIDE;
- virtual scoped_refptr<webkit_media::VideoFrameProvider> GetVideoFrameProvider(
+ virtual scoped_refptr<VideoFrameProvider> GetVideoFrameProvider(
const GURL& url,
const base::Closure& error_cb,
- const webkit_media::VideoFrameProvider::RepaintCB& repaint_cb) OVERRIDE;
- virtual scoped_refptr<webkit_media::MediaStreamAudioRenderer>
- GetAudioRenderer(const GURL& url) OVERRIDE;
+ const VideoFrameProvider::RepaintCB& repaint_cb) OVERRIDE;
+ virtual scoped_refptr<MediaStreamAudioRenderer> GetAudioRenderer(
+ const GURL& url) OVERRIDE;
};
} // namespace content
« no previous file with comments | « content/renderer/renderer_webkitplatformsupport_impl.cc ('k') | content/test/test_media_stream_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698