| Index: webrtc/api/peerconnection.h
|
| diff --git a/webrtc/api/peerconnection.h b/webrtc/api/peerconnection.h
|
| index 5269e3ae498ed3dfa2210da13ba40139ec8170af..a138171eabece7d05e8853729750f70a306a821a 100644
|
| --- a/webrtc/api/peerconnection.h
|
| +++ b/webrtc/api/peerconnection.h
|
| @@ -93,9 +93,10 @@ class PeerConnection : public PeerConnectionInterface,
|
| const std::string& kind,
|
| const std::string& stream_id) override;
|
|
|
| - std::vector<rtc::scoped_refptr<RtpSenderInterface>> GetSenders()
|
| + // Virtual for unit tests.
|
| + virtual std::vector<rtc::scoped_refptr<RtpSenderInterface>> GetSenders()
|
| const override;
|
| - std::vector<rtc::scoped_refptr<RtpReceiverInterface>> GetReceivers()
|
| + virtual std::vector<rtc::scoped_refptr<RtpReceiverInterface>> GetReceivers()
|
| const override;
|
|
|
| rtc::scoped_refptr<DataChannelInterface> CreateDataChannel(
|
|
|