| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // TestMediaStreamClient is an implementation of webkit_media::MediaStreamClient | 5 // TestMediaStreamClient is an implementation of webkit_media::MediaStreamClient |
| 6 // and used with WebKit::WebUserMediaClientMock to provide corresponding video | 6 // and used with WebKit::WebUserMediaClientMock to provide corresponding video |
| 7 // decoder to media pipeline. | 7 // decoder to media pipeline. |
| 8 | 8 |
| 9 #ifndef WEBKIT_SUPPORT_TEST_MEDIA_STREAM_CLIENT_H_ | 9 #ifndef WEBKIT_SUPPORT_TEST_MEDIA_STREAM_CLIENT_H_ |
| 10 #define WEBKIT_SUPPORT_TEST_MEDIA_STREAM_CLIENT_H_ | 10 #define WEBKIT_SUPPORT_TEST_MEDIA_STREAM_CLIENT_H_ |
| 11 | 11 |
| 12 #include "base/callback_forward.h" | 12 #include "base/callback_forward.h" |
| 13 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h" |
| 14 #include "webkit/media/media_stream_client.h" | 14 #include "webkit/media/media_stream_client.h" |
| 15 | 15 |
| 16 namespace webkit_media { |
| 17 class MediaStreamAudioRenderer; |
| 18 } |
| 19 |
| 16 namespace webkit_support { | 20 namespace webkit_support { |
| 17 | 21 |
| 18 class TestMediaStreamClient : public webkit_media::MediaStreamClient { | 22 class TestMediaStreamClient : public webkit_media::MediaStreamClient { |
| 19 public: | 23 public: |
| 20 TestMediaStreamClient(); | 24 TestMediaStreamClient(); |
| 21 virtual ~TestMediaStreamClient(); | 25 virtual ~TestMediaStreamClient(); |
| 22 | 26 |
| 23 // Implement webkit_media::MediaStreamClient. | 27 // Implement webkit_media::MediaStreamClient. |
| 24 virtual bool IsMediaStream(const GURL& url) OVERRIDE; | 28 virtual bool IsMediaStream(const GURL& url) OVERRIDE; |
| 25 virtual scoped_refptr<webkit_media::VideoFrameProvider> GetVideoFrameProvider( | 29 virtual scoped_refptr<webkit_media::VideoFrameProvider> GetVideoFrameProvider( |
| 26 const GURL& url, | 30 const GURL& url, |
| 27 const base::Closure& error_cb, | 31 const base::Closure& error_cb, |
| 28 const webkit_media::VideoFrameProvider::RepaintCB& repaint_cb) OVERRIDE; | 32 const webkit_media::VideoFrameProvider::RepaintCB& repaint_cb) OVERRIDE; |
| 29 virtual scoped_refptr<media::VideoDecoder> GetVideoDecoder( | 33 virtual scoped_refptr<media::VideoDecoder> GetVideoDecoder( |
| 30 const GURL& url, | 34 const GURL& url, |
| 31 media::MessageLoopFactory* message_loop_factory) OVERRIDE; | 35 media::MessageLoopFactory* message_loop_factory) OVERRIDE; |
| 36 virtual scoped_refptr<webkit_media::MediaStreamAudioRenderer> |
| 37 GetAudioRenderer(const GURL& url) OVERRIDE; |
| 32 }; | 38 }; |
| 33 | 39 |
| 34 } // namespace webkit_support | 40 } // namespace webkit_support |
| 35 | 41 |
| 36 #endif // WEBKIT_SUPPORT_TEST_MEDIA_STREAM_CLIENT_H_ | 42 #endif // WEBKIT_SUPPORT_TEST_MEDIA_STREAM_CLIENT_H_ |
| OLD | NEW |