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 #include "webkit/mocks/test_media_stream_client.h" | 5 #include "webkit/mocks/test_media_stream_client.h" |
6 | 6 |
7 #include "googleurl/src/gurl.h" | 7 #include "googleurl/src/gurl.h" |
8 #include "media/base/media_log.h" | 8 #include "media/base/media_log.h" |
9 #include "media/base/pipeline.h" | 9 #include "media/base/pipeline.h" |
10 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStream.h" | 10 #include "third_party/WebKit/public/platform/WebMediaStream.h" |
11 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStreamTrack
.h" | 11 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h" |
12 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" | 12 #include "third_party/WebKit/public/platform/WebVector.h" |
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaStreamRegistr
y.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaStreamRegistr
y.h" |
14 #include "webkit/media/media_stream_audio_renderer.h" | 14 #include "webkit/media/media_stream_audio_renderer.h" |
15 #include "webkit/media/simple_video_frame_provider.h" | 15 #include "webkit/media/simple_video_frame_provider.h" |
16 #include "webkit/media/webmediaplayer_impl.h" | 16 #include "webkit/media/webmediaplayer_impl.h" |
17 #include "webkit/media/webmediaplayer_ms.h" | 17 #include "webkit/media/webmediaplayer_ms.h" |
18 #include "webkit/media/webmediaplayer_params.h" | 18 #include "webkit/media/webmediaplayer_params.h" |
19 | 19 |
20 using namespace WebKit; | 20 using namespace WebKit; |
21 | 21 |
22 namespace { | 22 namespace { |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 error_cb, | 92 error_cb, |
93 repaint_cb); | 93 repaint_cb); |
94 } | 94 } |
95 | 95 |
96 scoped_refptr<webkit_media::MediaStreamAudioRenderer> | 96 scoped_refptr<webkit_media::MediaStreamAudioRenderer> |
97 TestMediaStreamClient::GetAudioRenderer(const GURL& url) { | 97 TestMediaStreamClient::GetAudioRenderer(const GURL& url) { |
98 return NULL; | 98 return NULL; |
99 } | 99 } |
100 | 100 |
101 } // namespace webkit_glue | 101 } // namespace webkit_glue |
OLD | NEW |