| Index: third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h
|
| diff --git a/third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h b/third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h
|
| index 75268f13cd63fa2d8bbe53322f9ee25697e56782..eefeb6144256d6018fa8e1041a2351804825c9ae 100644
|
| --- a/third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h
|
| +++ b/third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h
|
| @@ -46,6 +46,7 @@ enum class WebRTCErrorType;
|
| class WebRTCICECandidate;
|
| class WebRTCOfferOptions;
|
| class WebRTCRtpReceiver;
|
| +class WebRTCRtpSender;
|
| class WebRTCSessionDescription;
|
| class WebRTCSessionDescriptionRequest;
|
| class WebRTCStatsRequest;
|
| @@ -94,6 +95,10 @@ class WebRTCPeerConnectionHandler {
|
| virtual WebRTCDataChannelHandler* CreateDataChannel(
|
| const WebString& label,
|
| const WebRTCDataChannelInit&) = 0;
|
| + // Gets senders used by the peer connection. These are wrappers referencing
|
| + // webrtc-layer senders, multiple |WebRTCRtpSender| objects referencing the
|
| + // same webrtc-layer sender have the same |id|.
|
| + virtual WebVector<std::unique_ptr<WebRTCRtpSender>> GetSenders() = 0;
|
| // Gets receivers used by the peer connection. These are wrappers referencing
|
| // webrtc-layer receivers, multiple |WebRTCRtpReceiver| objects referencing
|
| // the same webrtc-layer receiver have the same |id|.
|
|
|