| 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/support/test_media_stream_client.h" | 5 #include "webkit/support/test_media_stream_client.h" |
| 6 | 6 |
| 7 #include "googleurl/src/gurl.h" | 7 #include "googleurl/src/gurl.h" |
| 8 #include "media/base/pipeline.h" | 8 #include "media/base/pipeline.h" |
| 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStream.h" | 9 #include "third_party/WebKit/public/platform/WebMediaStream.h" |
| 10 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStreamTrack
.h" | 10 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h" |
| 11 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" | 11 #include "third_party/WebKit/public/platform/WebVector.h" |
| 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaStreamRegistr
y.h" | 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaStreamRegistr
y.h" |
| 13 #include "webkit/media/media_stream_audio_renderer.h" | 13 #include "webkit/media/media_stream_audio_renderer.h" |
| 14 #include "webkit/media/simple_video_frame_provider.h" | 14 #include "webkit/media/simple_video_frame_provider.h" |
| 15 | 15 |
| 16 using namespace WebKit; | 16 using namespace WebKit; |
| 17 | 17 |
| 18 namespace { | 18 namespace { |
| 19 | 19 |
| 20 static const int kVideoCaptureWidth = 352; | 20 static const int kVideoCaptureWidth = 352; |
| 21 static const int kVideoCaptureHeight = 288; | 21 static const int kVideoCaptureHeight = 288; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 error_cb, | 57 error_cb, |
| 58 repaint_cb); | 58 repaint_cb); |
| 59 } | 59 } |
| 60 | 60 |
| 61 scoped_refptr<webkit_media::MediaStreamAudioRenderer> | 61 scoped_refptr<webkit_media::MediaStreamAudioRenderer> |
| 62 TestMediaStreamClient::GetAudioRenderer(const GURL& url) { | 62 TestMediaStreamClient::GetAudioRenderer(const GURL& url) { |
| 63 return NULL; | 63 return NULL; |
| 64 } | 64 } |
| 65 | 65 |
| 66 } // namespace webkit_support | 66 } // namespace webkit_support |
| OLD | NEW |