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() {} |
}; |