Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: webrtc/call/call.h

Issue 2981513002: Wire up RTP keep-alive in ortc api. (Closed)
Patch Set: wip Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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 #ifndef WEBRTC_CALL_CALL_H_ 10 #ifndef WEBRTC_CALL_CALL_H_
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 virtual void OnTransportOverheadChanged( 198 virtual void OnTransportOverheadChanged(
199 MediaType media, 199 MediaType media,
200 int transport_overhead_per_packet) = 0; 200 int transport_overhead_per_packet) = 0;
201 201
202 virtual void OnNetworkRouteChanged( 202 virtual void OnNetworkRouteChanged(
203 const std::string& transport_name, 203 const std::string& transport_name,
204 const rtc::NetworkRoute& network_route) = 0; 204 const rtc::NetworkRoute& network_route) = 0;
205 205
206 virtual void OnSentPacket(const rtc::SentPacket& sent_packet) = 0; 206 virtual void OnSentPacket(const rtc::SentPacket& sent_packet) = 0;
207 207
208 // Try to update the RTP keep-alive part of the call config. This is allowed
209 // only before creating and send streams. Returns true on success.
Taylor Brandstetter 2017/07/12 16:19:50 I think "and" was meant to be "any" here
sprang_webrtc 2017/07/16 09:34:03 Done.
210 virtual bool SetRtpKeepAliveConfig(const RtpKeepAliveConfig& config) = 0;
211
208 virtual ~Call() {} 212 virtual ~Call() {}
209 }; 213 };
210 214
211 } // namespace webrtc 215 } // namespace webrtc
212 216
213 #endif // WEBRTC_CALL_CALL_H_ 217 #endif // WEBRTC_CALL_CALL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698