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

Unified Diff: webrtc/call.h

Issue 1363573002: Wire up transport sequence number / send time callbacks to webrtc via libjingle. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: More ios deps Created 5 years, 2 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.h
diff --git a/webrtc/call.h b/webrtc/call.h
index 033e1a20db95f1fe8c11efe94f78cf412362ab16..e6e8cdee0bd35461e71c40dfbe9a780ba2ccb8d4 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() {}
};

Powered by Google App Engine
This is Rietveld 408576698