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_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ |
6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ | 6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
69 int video_session_id); | 69 int video_session_id); |
70 | 70 |
71 // Asks the PeerConnection factory to create a Local AudioTrack object. | 71 // Asks the PeerConnection factory to create a Local AudioTrack object. |
72 virtual talk_base::scoped_refptr<webrtc::LocalAudioTrackInterface> | 72 virtual talk_base::scoped_refptr<webrtc::LocalAudioTrackInterface> |
73 CreateLocalAudioTrack(const std::string& label, | 73 CreateLocalAudioTrack(const std::string& label, |
74 webrtc::AudioDeviceModule* audio_device); | 74 webrtc::AudioDeviceModule* audio_device); |
75 | 75 |
76 virtual webrtc::SessionDescriptionInterface* CreateSessionDescription( | 76 virtual webrtc::SessionDescriptionInterface* CreateSessionDescription( |
77 const std::string& sdp); | 77 const std::string& sdp); |
78 virtual webrtc::IceCandidateInterface* CreateIceCandidate( | 78 virtual webrtc::IceCandidateInterface* CreateIceCandidate( |
79 const std::string& label, | 79 const std::string& media_id, |
80 int m_line_index, | |
Ronghua Wu (Left Chromium)
2012/07/30 18:09:10
use sdp_mid and sdp_mline_index.
Mallinath (Gone from Chromium)
2012/07/30 18:42:08
Done.
| |
80 const std::string& sdp); | 81 const std::string& sdp); |
81 | 82 |
82 private: | 83 private: |
83 talk_base::scoped_refptr<webrtc::PeerConnectionFactoryInterface> pc_factory_; | 84 talk_base::scoped_refptr<webrtc::PeerConnectionFactoryInterface> pc_factory_; |
84 scoped_refptr<VideoCaptureImplManager> vc_manager_; | 85 scoped_refptr<VideoCaptureImplManager> vc_manager_; |
85 | 86 |
86 DISALLOW_COPY_AND_ASSIGN(MediaStreamDependencyFactory); | 87 DISALLOW_COPY_AND_ASSIGN(MediaStreamDependencyFactory); |
87 }; | 88 }; |
88 | 89 |
89 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ | 90 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ |
OLD | NEW |