Index: talk/media/sctp/sctpdataengine_unittest.cc |
diff --git a/talk/media/sctp/sctpdataengine_unittest.cc b/talk/media/sctp/sctpdataengine_unittest.cc |
index 2cd0302f56af67d823730fb1d707cf90e5e8091f..4706368b9d3ca2657a40f937da8160f37b7c008e 100644 |
--- a/talk/media/sctp/sctpdataengine_unittest.cc |
+++ b/talk/media/sctp/sctpdataengine_unittest.cc |
@@ -64,7 +64,7 @@ class SctpFakeNetworkInterface : public cricket::MediaChannel::NetworkInterface, |
protected: |
// Called to send raw packet down the wire (e.g. SCTP an packet). |
virtual bool SendPacket(rtc::Buffer* packet, |
- rtc::DiffServCodePoint dscp) { |
+ const rtc::PacketOptions& options) { |
LOG(LS_VERBOSE) << "SctpFakeNetworkInterface::SendPacket"; |
// TODO(ldixon): Can/should we use Buffer.TransferTo here? |
@@ -93,7 +93,7 @@ class SctpFakeNetworkInterface : public cricket::MediaChannel::NetworkInterface, |
// TODO(ldixon): Refactor parent NetworkInterface class so these are not |
// required. They are RTC specific and should be in an appropriate subclass. |
virtual bool SendRtcp(rtc::Buffer* packet, |
- rtc::DiffServCodePoint dscp) { |
+ const rtc::PacketOptions& options) { |
LOG(LS_WARNING) << "Unsupported: SctpFakeNetworkInterface::SendRtcp."; |
return false; |
} |