| Index: webrtc/api/peerconnection.h
|
| diff --git a/webrtc/api/peerconnection.h b/webrtc/api/peerconnection.h
|
| index b5577157a6573344ba7adb432b71f9ee377636d7..3da1ae93d9c49d7fb9084d3567bb0ea0704cf195 100644
|
| --- a/webrtc/api/peerconnection.h
|
| +++ b/webrtc/api/peerconnection.h
|
| @@ -19,8 +19,8 @@
|
| #include "webrtc/api/dtlsidentitystore.h"
|
| #include "webrtc/api/peerconnectionfactory.h"
|
| #include "webrtc/api/peerconnectioninterface.h"
|
| -#include "webrtc/api/rtpreceiverinterface.h"
|
| -#include "webrtc/api/rtpsenderinterface.h"
|
| +#include "webrtc/api/rtpreceiver.h"
|
| +#include "webrtc/api/rtpsender.h"
|
| #include "webrtc/api/statscollector.h"
|
| #include "webrtc/api/streamcollection.h"
|
| #include "webrtc/api/webrtcsession.h"
|
| @@ -334,9 +334,9 @@ class PeerConnection : public PeerConnectionInterface,
|
| void OnDataChannelOpenMessage(const std::string& label,
|
| const InternalDataChannelInit& config);
|
|
|
| - RtpSenderInterface* FindSenderById(const std::string& id);
|
| + RtpSender* FindSenderById(const std::string& id);
|
|
|
| - std::vector<rtc::scoped_refptr<RtpSenderInterface>>::iterator
|
| + std::vector<rtc::scoped_refptr<RtpSenderProxyEx<RtpSender>>>::iterator
|
| FindSenderForTrack(MediaStreamTrackInterface* track);
|
| std::vector<rtc::scoped_refptr<RtpReceiverInterface>>::iterator
|
| FindReceiverForTrack(const std::string& track_id);
|
| @@ -390,7 +390,7 @@ class PeerConnection : public PeerConnectionInterface,
|
|
|
| bool remote_peer_supports_msid_ = false;
|
|
|
| - std::vector<rtc::scoped_refptr<RtpSenderInterface>> senders_;
|
| + std::vector<rtc::scoped_refptr<RtpSenderProxyEx<RtpSender>>> senders_;
|
| std::vector<rtc::scoped_refptr<RtpReceiverInterface>> receivers_;
|
|
|
| // The session_ unique_ptr is declared at the bottom of PeerConnection
|
|
|