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 void SetCallBitrate(const BitrateParameters& bitrate) override; | |
148 | |
149 void SetCallBitrate_w(const BitrateParameters& bitrate); | |
Taylor Brandstetter
2017/04/12 01:33:42
The "invoked on worker thread" method can be priva
Zach Stein
2017/04/13 00:26:36
Done.
| |
150 | |
147 bool StartRtcEventLog(rtc::PlatformFile file, | 151 bool StartRtcEventLog(rtc::PlatformFile file, |
148 int64_t max_size_bytes) override; | 152 int64_t max_size_bytes) override; |
149 void StopRtcEventLog() override; | 153 void StopRtcEventLog() override; |
150 | 154 |
151 void Close() override; | 155 void Close() override; |
152 | 156 |
153 sigslot::signal1<DataChannel*> SignalDataChannelCreated; | 157 sigslot::signal1<DataChannel*> SignalDataChannelCreated; |
154 | 158 |
155 // Virtual for unit tests. | 159 // Virtual for unit tests. |
156 virtual const std::vector<rtc::scoped_refptr<DataChannel>>& | 160 virtual const std::vector<rtc::scoped_refptr<DataChannel>>& |
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
440 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>> | 444 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>> |
441 receivers_; | 445 receivers_; |
442 std::unique_ptr<WebRtcSession> session_; | 446 std::unique_ptr<WebRtcSession> session_; |
443 std::unique_ptr<StatsCollector> stats_; | 447 std::unique_ptr<StatsCollector> stats_; |
444 rtc::scoped_refptr<RTCStatsCollector> stats_collector_; | 448 rtc::scoped_refptr<RTCStatsCollector> stats_collector_; |
445 }; | 449 }; |
446 | 450 |
447 } // namespace webrtc | 451 } // namespace webrtc |
448 | 452 |
449 #endif // WEBRTC_PC_PEERCONNECTION_H_ | 453 #endif // WEBRTC_PC_PEERCONNECTION_H_ |
OLD | NEW |