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

Unified Diff: talk/app/webrtc/webrtcsession.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/webrtcsession.h
diff --git a/talk/app/webrtc/webrtcsession.h b/talk/app/webrtc/webrtcsession.h
index f3dd602ebaebd8b4333ffe9c46ea0c7e616ddbc7..d9c40d1a83b9e2df2195798c103275529befba48 100644
--- a/talk/app/webrtc/webrtcsession.h
+++ b/talk/app/webrtc/webrtcsession.h
@@ -151,7 +151,7 @@ class WebRtcSession : public AudioProviderInterface,
ERROR_TRANSPORT = 2, // transport error of some kind
};
- WebRtcSession(cricket::ChannelManager* channel_manager,
+ WebRtcSession(webrtc::MediaControllerInterface* media_controller,
rtc::Thread* signaling_thread,
rtc::Thread* worker_thread,
cricket::PortAllocator* port_allocator);
@@ -458,6 +458,9 @@ class WebRtcSession : public AudioProviderInterface,
void ReportNegotiatedCiphers(const cricket::TransportStats& stats);
+ void OnSentPacket_w(cricket::TransportChannel* channel,
+ const rtc::SentPacket& sent_packet);
+
rtc::Thread* const signaling_thread_;
rtc::Thread* const worker_thread_;
cricket::PortAllocator* const port_allocator_;
@@ -470,7 +473,7 @@ class WebRtcSession : public AudioProviderInterface,
bool initial_offerer_ = false;
rtc::scoped_ptr<cricket::TransportController> transport_controller_;
- rtc::scoped_ptr<MediaControllerInterface> media_controller_;
+ MediaControllerInterface* media_controller_;
rtc::scoped_ptr<cricket::VoiceChannel> voice_channel_;
rtc::scoped_ptr<cricket::VideoChannel> video_channel_;
rtc::scoped_ptr<cricket::DataChannel> data_channel_;

Powered by Google App Engine
This is Rietveld 408576698