Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Unified Diff: content/renderer/media/webrtc/peer_connection_dependency_factory.cc

Issue 1855193002: Move the call to enable the WebRTC event log from PeerConnectionFactory to PeerConnection. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge with existing WebRtcEventLogHandler. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/media/webrtc/peer_connection_dependency_factory.cc
diff --git a/content/renderer/media/webrtc/peer_connection_dependency_factory.cc b/content/renderer/media/webrtc/peer_connection_dependency_factory.cc
index 03bc115f2dbce4287614c10cf94c9a99f91fd165..85603d781eca8b44ba4b357bde8591a65175d524 100644
--- a/content/renderer/media/webrtc/peer_connection_dependency_factory.cc
+++ b/content/renderer/media/webrtc/peer_connection_dependency_factory.cc
@@ -642,15 +642,6 @@ PeerConnectionDependencyFactory::CreateIceCandidate(
return webrtc::CreateIceCandidate(sdp_mid, sdp_mline_index, sdp, nullptr);
}
-bool PeerConnectionDependencyFactory::StartRtcEventLog(
- base::PlatformFile file) {
- return GetPcFactory()->StartRtcEventLog(file);
-}
-
-void PeerConnectionDependencyFactory::StopRtcEventLog() {
- GetPcFactory()->StopRtcEventLog();
-}
-
WebRtcAudioDeviceImpl*
PeerConnectionDependencyFactory::GetWebRtcAudioDevice() {
return audio_device_.get();

Powered by Google App Engine
This is Rietveld 408576698