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

Side by Side Diff: content/renderer/media/mock_media_stream_dependency_factory.h

Issue 133903004: Cleaned up the WebRtcAudioCapturer a bit. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressed the comments Created 6 years, 11 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 #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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 const std::string& sdp, 150 const std::string& sdp,
151 webrtc::SdpParseError* error) OVERRIDE; 151 webrtc::SdpParseError* error) OVERRIDE;
152 virtual webrtc::IceCandidateInterface* CreateIceCandidate( 152 virtual webrtc::IceCandidateInterface* CreateIceCandidate(
153 const std::string& sdp_mid, 153 const std::string& sdp_mid,
154 int sdp_mline_index, 154 int sdp_mline_index,
155 const std::string& sdp) OVERRIDE; 155 const std::string& sdp) OVERRIDE;
156 156
157 virtual bool EnsurePeerConnectionFactory() OVERRIDE; 157 virtual bool EnsurePeerConnectionFactory() OVERRIDE;
158 virtual bool PeerConnectionFactoryCreated() OVERRIDE; 158 virtual bool PeerConnectionFactoryCreated() OVERRIDE;
159 159
160 virtual scoped_refptr<WebRtcAudioCapturer> MaybeCreateAudioCapturer( 160 virtual scoped_refptr<WebRtcAudioCapturer> CreateAudioCapturer(
161 int render_view_id, const StreamDeviceInfo& device_info) OVERRIDE; 161 int render_view_id, const StreamDeviceInfo& device_info) OVERRIDE;
162 162
163 MockAudioSource* last_audio_source() { return last_audio_source_.get(); } 163 MockAudioSource* last_audio_source() { return last_audio_source_.get(); }
164 MockVideoSource* last_video_source() { return last_video_source_.get(); } 164 MockVideoSource* last_video_source() { return last_video_source_.get(); }
165 165
166 private: 166 private:
167 bool mock_pc_factory_created_; 167 bool mock_pc_factory_created_;
168 scoped_refptr <MockAudioSource> last_audio_source_; 168 scoped_refptr <MockAudioSource> last_audio_source_;
169 scoped_refptr <MockVideoSource> last_video_source_; 169 scoped_refptr <MockVideoSource> last_video_source_;
170 170
171 DISALLOW_COPY_AND_ASSIGN(MockMediaStreamDependencyFactory); 171 DISALLOW_COPY_AND_ASSIGN(MockMediaStreamDependencyFactory);
172 }; 172 };
173 173
174 } // namespace content 174 } // namespace content
175 175
176 #endif // CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ 176 #endif // CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_DEPENDENCY_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698