OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_API_PEERCONNECTION_H_ | 11 #ifndef WEBRTC_API_PEERCONNECTION_H_ |
12 #define WEBRTC_API_PEERCONNECTION_H_ | 12 #define WEBRTC_API_PEERCONNECTION_H_ |
13 | 13 |
14 #include <string> | 14 #include <string> |
15 #include <map> | 15 #include <map> |
16 #include <memory> | 16 #include <memory> |
17 #include <vector> | 17 #include <vector> |
18 | 18 |
19 #include "webrtc/api/dtlsidentitystore.h" | |
20 #include "webrtc/api/peerconnectionfactory.h" | 19 #include "webrtc/api/peerconnectionfactory.h" |
21 #include "webrtc/api/peerconnectioninterface.h" | 20 #include "webrtc/api/peerconnectioninterface.h" |
22 #include "webrtc/api/rtpreceiverinterface.h" | 21 #include "webrtc/api/rtpreceiverinterface.h" |
23 #include "webrtc/api/rtpsenderinterface.h" | 22 #include "webrtc/api/rtpsenderinterface.h" |
24 #include "webrtc/api/statscollector.h" | 23 #include "webrtc/api/statscollector.h" |
25 #include "webrtc/api/streamcollection.h" | 24 #include "webrtc/api/streamcollection.h" |
26 #include "webrtc/api/webrtcsession.h" | 25 #include "webrtc/api/webrtcsession.h" |
27 | 26 |
28 namespace webrtc { | 27 namespace webrtc { |
29 | 28 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 class PeerConnection : public PeerConnectionInterface, | 62 class PeerConnection : public PeerConnectionInterface, |
64 public IceObserver, | 63 public IceObserver, |
65 public rtc::MessageHandler, | 64 public rtc::MessageHandler, |
66 public sigslot::has_slots<> { | 65 public sigslot::has_slots<> { |
67 public: | 66 public: |
68 explicit PeerConnection(PeerConnectionFactory* factory); | 67 explicit PeerConnection(PeerConnectionFactory* factory); |
69 | 68 |
70 bool Initialize( | 69 bool Initialize( |
71 const PeerConnectionInterface::RTCConfiguration& configuration, | 70 const PeerConnectionInterface::RTCConfiguration& configuration, |
72 std::unique_ptr<cricket::PortAllocator> allocator, | 71 std::unique_ptr<cricket::PortAllocator> allocator, |
73 std::unique_ptr<DtlsIdentityStoreInterface> dtls_identity_store, | 72 std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator, |
74 PeerConnectionObserver* observer); | 73 PeerConnectionObserver* observer); |
75 | 74 |
76 rtc::scoped_refptr<StreamCollectionInterface> local_streams() override; | 75 rtc::scoped_refptr<StreamCollectionInterface> local_streams() override; |
77 rtc::scoped_refptr<StreamCollectionInterface> remote_streams() override; | 76 rtc::scoped_refptr<StreamCollectionInterface> remote_streams() override; |
78 bool AddStream(MediaStreamInterface* local_stream) override; | 77 bool AddStream(MediaStreamInterface* local_stream) override; |
79 void RemoveStream(MediaStreamInterface* local_stream) override; | 78 void RemoveStream(MediaStreamInterface* local_stream) override; |
80 | 79 |
81 rtc::scoped_refptr<RtpSenderInterface> AddTrack( | 80 rtc::scoped_refptr<RtpSenderInterface> AddTrack( |
82 MediaStreamTrackInterface* track, | 81 MediaStreamTrackInterface* track, |
83 std::vector<MediaStreamInterface*> streams) override; | 82 std::vector<MediaStreamInterface*> streams) override; |
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 std::vector<rtc::scoped_refptr<RtpSenderInterface>> senders_; | 403 std::vector<rtc::scoped_refptr<RtpSenderInterface>> senders_; |
405 std::vector<rtc::scoped_refptr<RtpReceiverInterface>> receivers_; | 404 std::vector<rtc::scoped_refptr<RtpReceiverInterface>> receivers_; |
406 | 405 |
407 std::unique_ptr<WebRtcSession> session_; | 406 std::unique_ptr<WebRtcSession> session_; |
408 std::unique_ptr<StatsCollector> stats_; | 407 std::unique_ptr<StatsCollector> stats_; |
409 }; | 408 }; |
410 | 409 |
411 } // namespace webrtc | 410 } // namespace webrtc |
412 | 411 |
413 #endif // WEBRTC_API_PEERCONNECTION_H_ | 412 #endif // WEBRTC_API_PEERCONNECTION_H_ |
OLD | NEW |