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

Unified Diff: talk/media/base/fakenetworkinterface.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/media/base/fakenetworkinterface.h
diff --git a/talk/media/base/fakenetworkinterface.h b/talk/media/base/fakenetworkinterface.h
index 275f5981cee6cd2b2d7d12437ae53b099063996e..418dfef63cd8d9ccff03764724efb20a209ab38b 100644
--- a/talk/media/base/fakenetworkinterface.h
+++ b/talk/media/base/fakenetworkinterface.h
@@ -129,7 +129,7 @@ class FakeNetworkInterface : public MediaChannel::NetworkInterface,
protected:
virtual bool SendPacket(rtc::Buffer* packet,
- rtc::DiffServCodePoint dscp) {
+ const rtc::PacketOptions& options) {
rtc::CritScope cs(&crit_);
uint32_t cur_ssrc = 0;
@@ -155,7 +155,7 @@ class FakeNetworkInterface : public MediaChannel::NetworkInterface,
}
virtual bool SendRtcp(rtc::Buffer* packet,
- rtc::DiffServCodePoint dscp) {
+ const rtc::PacketOptions& options) {
rtc::CritScope cs(&crit_);
rtcp_packets_.push_back(*packet);
if (!conf_) {
« no previous file with comments | « talk/media/base/fakemediaengine.h ('k') | talk/media/base/mediachannel.h » ('j') | webrtc/call.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698