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

Side by Side Diff: webkit/mocks/test_media_stream_client.h

Issue 13159005: Enable media stream layout test with content_shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/mocks/DEPS ('k') | webkit/mocks/test_media_stream_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_MOCKS_TEST_MEDIA_STREAM_CLIENT_H_
10 #define WEBKIT_SUPPORT_TEST_MEDIA_STREAM_CLIENT_H_ 10 #define WEBKIT_MOCKS_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/Platform/chromium/public/WebURL.h" 13 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h"
14 #include "webkit/media/media_stream_client.h" 14 #include "webkit/media/media_stream_client.h"
15 15
16 namespace WebKit {
17 class WebFrame;
18 class WebMediaPlayer;
19 class WebMediaPlayerClient;
20 }
21
16 namespace webkit_media { 22 namespace webkit_media {
17 class MediaStreamAudioRenderer; 23 class MediaStreamAudioRenderer;
24 class MediaStreamClient;
18 } 25 }
19 26
20 namespace webkit_support { 27 namespace webkit_glue {
28
29 // This is used by WebFrameClient::createMediaPlayer().
30 WebKit::WebMediaPlayer* CreateMediaPlayer(
31 WebKit::WebFrame* frame,
32 const WebKit::WebURL& url,
33 WebKit::WebMediaPlayerClient* client,
34 webkit_media::MediaStreamClient* media_stream_client);
21 35
22 class TestMediaStreamClient : public webkit_media::MediaStreamClient { 36 class TestMediaStreamClient : public webkit_media::MediaStreamClient {
23 public: 37 public:
24 TestMediaStreamClient(); 38 TestMediaStreamClient();
25 virtual ~TestMediaStreamClient(); 39 virtual ~TestMediaStreamClient();
26 40
27 // Implement webkit_media::MediaStreamClient. 41 // Implement webkit_media::MediaStreamClient.
28 virtual bool IsMediaStream(const GURL& url) OVERRIDE; 42 virtual bool IsMediaStream(const GURL& url) OVERRIDE;
29 virtual scoped_refptr<webkit_media::VideoFrameProvider> GetVideoFrameProvider( 43 virtual scoped_refptr<webkit_media::VideoFrameProvider> GetVideoFrameProvider(
30 const GURL& url, 44 const GURL& url,
31 const base::Closure& error_cb, 45 const base::Closure& error_cb,
32 const webkit_media::VideoFrameProvider::RepaintCB& repaint_cb) OVERRIDE; 46 const webkit_media::VideoFrameProvider::RepaintCB& repaint_cb) OVERRIDE;
33 virtual scoped_refptr<webkit_media::MediaStreamAudioRenderer> 47 virtual scoped_refptr<webkit_media::MediaStreamAudioRenderer>
34 GetAudioRenderer(const GURL& url) OVERRIDE; 48 GetAudioRenderer(const GURL& url) OVERRIDE;
35 }; 49 };
36 50
37 } // namespace webkit_support 51 } // namespace webkit_glue
38 52
39 #endif // WEBKIT_SUPPORT_TEST_MEDIA_STREAM_CLIENT_H_ 53 #endif // WEBKIT_MOCKS_TEST_MEDIA_STREAM_CLIENT_H_
OLDNEW
« no previous file with comments | « webkit/mocks/DEPS ('k') | webkit/mocks/test_media_stream_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698