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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 bool SetConfiguration( | 137 bool SetConfiguration( |
138 const PeerConnectionInterface::RTCConfiguration& configuration) override { | 138 const PeerConnectionInterface::RTCConfiguration& configuration) override { |
139 return SetConfiguration(configuration, nullptr); | 139 return SetConfiguration(configuration, nullptr); |
140 } | 140 } |
141 bool AddIceCandidate(const IceCandidateInterface* candidate) override; | 141 bool AddIceCandidate(const IceCandidateInterface* candidate) override; |
142 bool RemoveIceCandidates( | 142 bool RemoveIceCandidates( |
143 const std::vector<cricket::Candidate>& candidates) override; | 143 const std::vector<cricket::Candidate>& candidates) override; |
144 | 144 |
145 void RegisterUMAObserver(UMAObserver* observer) override; | 145 void RegisterUMAObserver(UMAObserver* observer) override; |
146 | 146 |
147 RTCError SetBitrate(const BitrateParameters& bitrate) override; | |
148 | |
149 bool StartRtcEventLog(rtc::PlatformFile file, | 147 bool StartRtcEventLog(rtc::PlatformFile file, |
150 int64_t max_size_bytes) override; | 148 int64_t max_size_bytes) override; |
151 void StopRtcEventLog() override; | 149 void StopRtcEventLog() override; |
152 | 150 |
153 void Close() override; | 151 void Close() override; |
154 | 152 |
155 sigslot::signal1<DataChannel*> SignalDataChannelCreated; | 153 sigslot::signal1<DataChannel*> SignalDataChannelCreated; |
156 | 154 |
157 // Virtual for unit tests. | 155 // Virtual for unit tests. |
158 virtual const std::vector<rtc::scoped_refptr<DataChannel>>& | 156 virtual const std::vector<rtc::scoped_refptr<DataChannel>>& |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
448 std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>> | 446 std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>> |
449 senders_; | 447 senders_; |
450 std::vector< | 448 std::vector< |
451 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>> | 449 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>> |
452 receivers_; | 450 receivers_; |
453 }; | 451 }; |
454 | 452 |
455 } // namespace webrtc | 453 } // namespace webrtc |
456 | 454 |
457 #endif // WEBRTC_PC_PEERCONNECTION_H_ | 455 #endif // WEBRTC_PC_PEERCONNECTION_H_ |
OLD | NEW |