| Index: webrtc/api/webrtcsession_unittest.cc
|
| diff --git a/webrtc/api/webrtcsession_unittest.cc b/webrtc/api/webrtcsession_unittest.cc
|
| index 116c8d57391da9ecd2d43cf250317d69221d84db..4ae66ab861fd1a21150fa34507a0511799ea851e 100644
|
| --- a/webrtc/api/webrtcsession_unittest.cc
|
| +++ b/webrtc/api/webrtcsession_unittest.cc
|
| @@ -263,7 +263,7 @@ class WebRtcSessionForTest : public webrtc::WebRtcSession {
|
| if (!ch) {
|
| return nullptr;
|
| }
|
| - return ch->transport_channel();
|
| + return ch->rtp_transport();
|
| }
|
|
|
| rtc::PacketTransportInterface* rtcp_transport_channel(
|
| @@ -271,7 +271,7 @@ class WebRtcSessionForTest : public webrtc::WebRtcSession {
|
| if (!ch) {
|
| return nullptr;
|
| }
|
| - return ch->rtcp_transport_channel();
|
| + return ch->rtcp_transport();
|
| }
|
| };
|
|
|
|
|