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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/call/call.h
diff --git a/webrtc/call/call.h b/webrtc/call/call.h
index f99ba851ab420daeb5c12f03e1577f1701c4cbb3..c75216b896d9cb2c69ed2254ab16e48668079b45 100644
--- a/webrtc/call/call.h
+++ b/webrtc/call/call.h
@@ -205,6 +205,10 @@ class Call {
virtual void OnSentPacket(const rtc::SentPacket& sent_packet) = 0;
+ // Try to update the RTP keep-alive part of the call config. This is allowed
+ // 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.
+ virtual bool SetRtpKeepAliveConfig(const RtpKeepAliveConfig& config) = 0;
+
virtual ~Call() {}
};

Powered by Google App Engine
This is Rietveld 408576698