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

Unified Diff: webkit/support/test_media_stream_client.h

Issue 8887004: add components for integration test which will detect breakage of media pipeline with video captu... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: code review and final Created 8 years, 11 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 | « media/media.gyp ('k') | webkit/support/test_media_stream_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/test_media_stream_client.h
===================================================================
--- webkit/support/test_media_stream_client.h (revision 0)
+++ webkit/support/test_media_stream_client.h (revision 0)
@@ -0,0 +1,38 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// TestMediaStreamClient is an implementation of webkit_media::MediaStreamClient
+// and used with WebKit::WebUserMediaClientMock to provide corresponding video
+// decoder to media pipeline.
+
+#ifndef WEBKIT_SUPPORT_TEST_MEDIA_STREAM_CLIENT_H_
+#define WEBKIT_SUPPORT_TEST_MEDIA_STREAM_CLIENT_H_
+
+#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h"
+#include "webkit/media/media_stream_client.h"
+
+namespace webkit_support {
+
+class MediaStreamUtil {
+ public:
+ virtual bool IsMockStream(const WebKit::WebURL& url) = 0;
+};
+
+class TestMediaStreamClient : public webkit_media::MediaStreamClient {
+ public:
+ explicit TestMediaStreamClient(MediaStreamUtil* media_stream_util);
+ virtual ~TestMediaStreamClient() {}
+
+ // Implement webkit_media::MediaStreamClient.
+ virtual scoped_refptr<media::VideoDecoder> GetVideoDecoder(
+ const GURL& url,
+ media::MessageLoopFactory* message_loop_factory) OVERRIDE;
+
+ private:
+ MediaStreamUtil* media_stream_util_;
+};
+
+} // namespace webkit_support
+
+#endif // WEBKIT_SUPPORT_TEST_MEDIA_STREAM_CLIENT_H_
Property changes on: webkit/support/test_media_stream_client.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « media/media.gyp ('k') | webkit/support/test_media_stream_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698