| Index: content/renderer/media/rtc_peer_connection_handler.cc
|
| diff --git a/content/renderer/media/rtc_peer_connection_handler.cc b/content/renderer/media/rtc_peer_connection_handler.cc
|
| index 171a38868b2963049303ccb57406f61a734b1c77..3989647824a838dc2159a0436b614ab86c001aea 100644
|
| --- a/content/renderer/media/rtc_peer_connection_handler.cc
|
| +++ b/content/renderer/media/rtc_peer_connection_handler.cc
|
| @@ -1451,6 +1451,17 @@ void RTCPeerConnectionHandler::CloseClientPeerConnection() {
|
| client_->closePeerConnection();
|
| }
|
|
|
| +void RTCPeerConnectionHandler::StartEventLog(IPC::PlatformFileForTransit file,
|
| + int64_t max_file_size_bytes) {
|
| + DCHECK(thread_checker_.CalledOnValidThread());
|
| + native_peer_connection_->StartRtcEventLog(file, max_file_size_bytes);
|
| +}
|
| +
|
| +void RTCPeerConnectionHandler::StopEventLog() {
|
| + DCHECK(thread_checker_.CalledOnValidThread());
|
| + native_peer_connection_->StopRtcEventLog();
|
| +}
|
| +
|
| blink::WebRTCDataChannelHandler* RTCPeerConnectionHandler::createDataChannel(
|
| const blink::WebString& label, const blink::WebRTCDataChannelInit& init) {
|
| DCHECK(thread_checker_.CalledOnValidThread());
|
|
|