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 |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
138 | 138 |
139 void RegisterUMAObserver(UMAObserver* observer) override; | 139 void RegisterUMAObserver(UMAObserver* observer) override; |
140 | 140 |
141 bool StartRtcEventLog(rtc::PlatformFile file, | 141 bool StartRtcEventLog(rtc::PlatformFile file, |
142 int64_t max_size_bytes) override; | 142 int64_t max_size_bytes) override; |
143 void StopRtcEventLog() override; | 143 void StopRtcEventLog() override; |
144 | 144 |
145 void Close() override; | 145 void Close() override; |
146 | 146 |
147 sigslot::signal1<DataChannel*> SignalDataChannelCreated; | 147 sigslot::signal1<DataChannel*> SignalDataChannelCreated; |
148 std::vector<uint32_t> GetRemoteAudioTrackSsrcs() override; | |
aleloi
2016/12/05 14:03:08
Is there problems with implementing this in client
GeorgeZ
2016/12/05 17:56:18
Functions in PeerConnectionObserver are event/call
| |
148 | 149 |
149 // Virtual for unit tests. | 150 // Virtual for unit tests. |
150 virtual const std::vector<rtc::scoped_refptr<DataChannel>>& | 151 virtual const std::vector<rtc::scoped_refptr<DataChannel>>& |
151 sctp_data_channels() const { | 152 sctp_data_channels() const { |
152 return sctp_data_channels_; | 153 return sctp_data_channels_; |
153 } | 154 } |
154 | 155 |
155 protected: | 156 protected: |
156 ~PeerConnection() override; | 157 ~PeerConnection() override; |
157 | 158 |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
428 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>> | 429 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>> |
429 receivers_; | 430 receivers_; |
430 std::unique_ptr<WebRtcSession> session_; | 431 std::unique_ptr<WebRtcSession> session_; |
431 std::unique_ptr<StatsCollector> stats_; | 432 std::unique_ptr<StatsCollector> stats_; |
432 rtc::scoped_refptr<RTCStatsCollector> stats_collector_; | 433 rtc::scoped_refptr<RTCStatsCollector> stats_collector_; |
433 }; | 434 }; |
434 | 435 |
435 } // namespace webrtc | 436 } // namespace webrtc |
436 | 437 |
437 #endif // WEBRTC_API_PEERCONNECTION_H_ | 438 #endif // WEBRTC_API_PEERCONNECTION_H_ |
OLD | NEW |