aboutsummaryrefslogtreecommitdiff
path: root/webrtc/call.h
diff options
context:
space:
mode:
authorstefan <stefan@webrtc.org>2015-10-15 07:26:07 -0700
committerCommit bot <commit-bot@chromium.org>2015-10-15 14:26:17 +0000
commitc1aeaf0dc37d96f31c92f893f4e30e7a5f7cc2b7 (patch)
treebae8335df9007b063b355378e72f82b95e41eb1f /webrtc/call.h
parent543b6ca30a43eeb069c699291460ce6bacc7959d (diff)
downloadwebrtc-c1aeaf0dc37d96f31c92f893f4e30e7a5f7cc2b7.tar.gz
Wire up packet_id / send time callbacks to webrtc via libjingle.
BUG=webrtc:4173 Review URL: https://codereview.webrtc.org/1363573002 Cr-Commit-Position: refs/heads/master@{#10289}
Diffstat (limited to 'webrtc/call.h')
-rw-r--r--webrtc/call.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/webrtc/call.h b/webrtc/call.h
index 033e1a20db..e6e8cdee0b 100644
--- a/webrtc/call.h
+++ b/webrtc/call.h
@@ -16,6 +16,7 @@
#include "webrtc/common_types.h"
#include "webrtc/audio_receive_stream.h"
#include "webrtc/audio_send_stream.h"
+#include "webrtc/base/socket.h"
#include "webrtc/video_receive_stream.h"
#include "webrtc/video_send_stream.h"
@@ -137,6 +138,8 @@ class Call {
const Config::BitrateConfig& bitrate_config) = 0;
virtual void SignalNetworkState(NetworkState state) = 0;
+ virtual void OnSentPacket(const rtc::SentPacket& sent_packet) = 0;
+
virtual ~Call() {}
};