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

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

Issue 15993018: Reland: Use a shared thread for media operations (round 3). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix stop race Created 7 years, 6 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
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_MOCKS_TEST_MEDIA_STREAM_CLIENT_H_ 9 #ifndef WEBKIT_MOCKS_TEST_MEDIA_STREAM_CLIENT_H_
10 #define WEBKIT_MOCKS_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/public/platform/WebURL.h" 13 #include "third_party/WebKit/public/platform/WebURL.h"
14 #include "webkit/renderer/media/media_stream_client.h" 14 #include "webkit/renderer/media/media_stream_client.h"
15 15
16 namespace WebKit {
17 class WebFrame;
18 class WebMediaPlayer;
19 class WebMediaPlayerClient;
20 }
21
22 namespace webkit_media { 16 namespace webkit_media {
23 class MediaStreamAudioRenderer; 17 class MediaStreamAudioRenderer;
24 class MediaStreamClient;
25 } 18 }
26 19
27 namespace webkit_glue { 20 namespace webkit_glue {
28 21
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);
35
36 class TestMediaStreamClient : public webkit_media::MediaStreamClient { 22 class TestMediaStreamClient : public webkit_media::MediaStreamClient {
37 public: 23 public:
38 TestMediaStreamClient(); 24 TestMediaStreamClient();
39 virtual ~TestMediaStreamClient(); 25 virtual ~TestMediaStreamClient();
40 26
41 // Implement webkit_media::MediaStreamClient. 27 // Implement webkit_media::MediaStreamClient.
42 virtual bool IsMediaStream(const GURL& url) OVERRIDE; 28 virtual bool IsMediaStream(const GURL& url) OVERRIDE;
43 virtual scoped_refptr<webkit_media::VideoFrameProvider> GetVideoFrameProvider( 29 virtual scoped_refptr<webkit_media::VideoFrameProvider> GetVideoFrameProvider(
44 const GURL& url, 30 const GURL& url,
45 const base::Closure& error_cb, 31 const base::Closure& error_cb,
46 const webkit_media::VideoFrameProvider::RepaintCB& repaint_cb) OVERRIDE; 32 const webkit_media::VideoFrameProvider::RepaintCB& repaint_cb) OVERRIDE;
47 virtual scoped_refptr<webkit_media::MediaStreamAudioRenderer> 33 virtual scoped_refptr<webkit_media::MediaStreamAudioRenderer>
48 GetAudioRenderer(const GURL& url) OVERRIDE; 34 GetAudioRenderer(const GURL& url) OVERRIDE;
49 }; 35 };
50 36
51 } // namespace webkit_glue 37 } // namespace webkit_glue
52 38
53 #endif // WEBKIT_MOCKS_TEST_MEDIA_STREAM_CLIENT_H_ 39 #endif // WEBKIT_MOCKS_TEST_MEDIA_STREAM_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698