OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "content/shell/renderer/test_runner/mock_web_media_stream_center.h" | 5 #include "components/test_runner/mock_web_media_stream_center.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "content/shell/renderer/test_runner/test_interfaces.h" | 8 #include "components/test_runner/test_interfaces.h" |
9 #include "content/shell/renderer/test_runner/web_test_delegate.h" | 9 #include "components/test_runner/web_test_delegate.h" |
10 #include "third_party/WebKit/public/platform/WebAudioDestinationConsumer.h" | 10 #include "third_party/WebKit/public/platform/WebAudioDestinationConsumer.h" |
11 #include "third_party/WebKit/public/platform/WebAudioSourceProvider.h" | 11 #include "third_party/WebKit/public/platform/WebAudioSourceProvider.h" |
12 #include "third_party/WebKit/public/platform/WebMediaStream.h" | 12 #include "third_party/WebKit/public/platform/WebMediaStream.h" |
13 #include "third_party/WebKit/public/platform/WebMediaStreamCenterClient.h" | 13 #include "third_party/WebKit/public/platform/WebMediaStreamCenterClient.h" |
14 #include "third_party/WebKit/public/platform/WebMediaStreamSource.h" | 14 #include "third_party/WebKit/public/platform/WebMediaStreamSource.h" |
15 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h" | 15 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h" |
16 #include "third_party/WebKit/public/platform/WebMediaStreamTrackSourcesRequest.h
" | 16 #include "third_party/WebKit/public/platform/WebMediaStreamTrackSourcesRequest.h
" |
17 #include "third_party/WebKit/public/platform/WebSourceInfo.h" | 17 #include "third_party/WebKit/public/platform/WebSourceInfo.h" |
18 #include "third_party/WebKit/public/platform/WebVector.h" | 18 #include "third_party/WebKit/public/platform/WebVector.h" |
19 | 19 |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 interfaces_->GetDelegate()->PostTask(new NewTrackTask(this, stream)); | 128 interfaces_->GetDelegate()->PostTask(new NewTrackTask(this, stream)); |
129 } | 129 } |
130 | 130 |
131 blink::WebAudioSourceProvider* | 131 blink::WebAudioSourceProvider* |
132 MockWebMediaStreamCenter::createWebAudioSourceFromMediaStreamTrack( | 132 MockWebMediaStreamCenter::createWebAudioSourceFromMediaStreamTrack( |
133 const blink::WebMediaStreamTrack& track) { | 133 const blink::WebMediaStreamTrack& track) { |
134 return NULL; | 134 return NULL; |
135 } | 135 } |
136 | 136 |
137 } // namespace content | 137 } // namespace content |
OLD | NEW |