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

Unified Diff: webrtc/p2p/base/port.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: . Created 5 years, 3 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/p2p/base/port.h
diff --git a/webrtc/p2p/base/port.h b/webrtc/p2p/base/port.h
index 47903be05b55753b063e6bc8630946d8938e59a1..5e7f025ff6dd554062d2aadd62b5228d061ff91c 100644
--- a/webrtc/p2p/base/port.h
+++ b/webrtc/p2p/base/port.h
@@ -467,6 +467,8 @@ class Connection : public rtc::MessageHandler,
sigslot::signal4<Connection*, const char*, size_t, const rtc::PacketTime&>
SignalReadPacket;
+ sigslot::signal2<Connection*, const rtc::SentPacket&> SignalSentPacket;
pthatcher1 2015/09/25 23:24:58 I don't see this actually wired up to anything. D
stefan-webrtc 2015/10/02 13:29:12 I dropped the ball here. I think it should be prop
+
sigslot::signal1<Connection*> SignalReadyToSend;
// Called when a packet is received on this connection.

Powered by Google App Engine
This is Rietveld 408576698