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

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: Add missing updated_options 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..1b51be7ca2872f762f5708e1c94d402a554e8434 100644
--- a/talk/app/webrtc/mediacontroller.h
+++ b/talk/app/webrtc/mediacontroller.h
@@ -30,6 +30,10 @@
#include "webrtc/base/thread.h"
+namespace cricket {
+class ChannelManager;
+} // namespace cricket
+
namespace webrtc {
class Call;
class VoiceEngine;
@@ -38,11 +42,13 @@ class VoiceEngine;
// in the future will create and own RtpSenders and RtpReceivers.
class MediaControllerInterface {
public:
- static MediaControllerInterface* Create(rtc::Thread* worker_thread,
- webrtc::VoiceEngine* voice_engine);
+ static MediaControllerInterface* Create(
+ rtc::Thread* worker_thread,
+ cricket::ChannelManager* channel_manager);
virtual ~MediaControllerInterface() {}
virtual webrtc::Call* call_w() = 0;
+ virtual cricket::ChannelManager* channel_manager() const = 0;
};
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698