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

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: Cleanups. 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..db0a1f1257dc5c81f35d5546d709c31f86130bc3 100644
--- a/talk/app/webrtc/mediacontroller.h
+++ b/talk/app/webrtc/mediacontroller.h
@@ -29,6 +29,11 @@
#define TALK_APP_WEBRTC_MEDIACONTROLLER_H_
#include "webrtc/base/thread.h"
+#include "webrtc/common_types.h"
+
+namespace cricket {
+class TransportChannel;
+} // namespace cricket
namespace webrtc {
class Call;
@@ -43,6 +48,10 @@ class MediaControllerInterface {
virtual ~MediaControllerInterface() {}
virtual webrtc::Call* call_w() = 0;
+ virtual void ConnectTransportChannel(
+ cricket::TransportChannel* transport_channel) = 0;
pthatcher1 2015/10/07 16:44:38 We might want to name these more explicitly: Conn
stefan-webrtc 2015/10/08 12:53:45 Done.
+ virtual void DisconnectTransportChannel(
+ cricket::TransportChannel* transport_channel) = 0;
pthatcher1 2015/10/07 16:44:38 Can you put a comment explaining what these do, wh
stefan-webrtc 2015/10/08 12:53:45 Done.
};
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698