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

Unified Diff: talk/app/webrtc/mediacontroller.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: No changes to const parameters. 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: talk/app/webrtc/mediacontroller.h
diff --git a/talk/app/webrtc/mediacontroller.h b/talk/app/webrtc/mediacontroller.h
index 68798515d00984c586a88fbf8346f75ca96f309b..8fa72c6e18f9850641a86212365af84ca9e470ac 100644
--- a/talk/app/webrtc/mediacontroller.h
+++ b/talk/app/webrtc/mediacontroller.h
@@ -29,6 +29,7 @@
#define TALK_APP_WEBRTC_MEDIACONTROLLER_H_
#include "webrtc/base/thread.h"
+#include "webrtc/common_types.h"
namespace webrtc {
class Call;
@@ -43,6 +44,8 @@ class MediaControllerInterface {
virtual ~MediaControllerInterface() {}
virtual webrtc::Call* call_w() = 0;
+
+ virtual void OnPacketSent(const webrtc::SentPacket& sent_packet) = 0;
pthatcher1 2015/10/05 18:30:13 Are we sure that packet_ids will not collide when
pthatcher1 2015/10/05 18:30:13 Why would a caller call media_controller_->OnPacke
stefan-webrtc 2015/10/06 13:00:19 That is the point with this packet id. It's a sequ
pthatcher1 2015/10/06 20:23:55 Each port only has one PC, yes.
};
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698