| 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 #ifndef CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ | 6 #define CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 const std::string& sdp, | 177 const std::string& sdp, |
| 178 webrtc::SdpParseError* error) OVERRIDE; | 178 webrtc::SdpParseError* error) OVERRIDE; |
| 179 virtual webrtc::IceCandidateInterface* CreateIceCandidate( | 179 virtual webrtc::IceCandidateInterface* CreateIceCandidate( |
| 180 const std::string& sdp_mid, | 180 const std::string& sdp_mid, |
| 181 int sdp_mline_index, | 181 int sdp_mline_index, |
| 182 const std::string& sdp) OVERRIDE; | 182 const std::string& sdp) OVERRIDE; |
| 183 | 183 |
| 184 virtual bool EnsurePeerConnectionFactory() OVERRIDE; | 184 virtual bool EnsurePeerConnectionFactory() OVERRIDE; |
| 185 virtual bool PeerConnectionFactoryCreated() OVERRIDE; | 185 virtual bool PeerConnectionFactoryCreated() OVERRIDE; |
| 186 | 186 |
| 187 virtual scoped_refptr<WebRtcAudioCapturer> MaybeCreateAudioCapturer( | 187 virtual scoped_refptr<WebRtcAudioCapturer> CreateAudioCapturer( |
| 188 int render_view_id, const StreamDeviceInfo& device_info, | 188 int render_view_id, const StreamDeviceInfo& device_info, |
| 189 const blink::WebMediaConstraints& constraints) OVERRIDE; | 189 const blink::WebMediaConstraints& constraints) OVERRIDE; |
| 190 | 190 |
| 191 MockAudioSource* last_audio_source() { return last_audio_source_.get(); } | 191 MockAudioSource* last_audio_source() { return last_audio_source_.get(); } |
| 192 MockVideoSource* last_video_source() { return last_video_source_.get(); } | 192 MockVideoSource* last_video_source() { return last_video_source_.get(); } |
| 193 | 193 |
| 194 private: | 194 private: |
| 195 bool mock_pc_factory_created_; | 195 bool mock_pc_factory_created_; |
| 196 scoped_refptr <MockAudioSource> last_audio_source_; | 196 scoped_refptr <MockAudioSource> last_audio_source_; |
| 197 scoped_refptr <MockVideoSource> last_video_source_; | 197 scoped_refptr <MockVideoSource> last_video_source_; |
| 198 | 198 |
| 199 DISALLOW_COPY_AND_ASSIGN(MockMediaStreamDependencyFactory); | 199 DISALLOW_COPY_AND_ASSIGN(MockMediaStreamDependencyFactory); |
| 200 }; | 200 }; |
| 201 | 201 |
| 202 } // namespace content | 202 } // namespace content |
| 203 | 203 |
| 204 #endif // CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ | 204 #endif // CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ |
| OLD | NEW |