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

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

Issue 1211323013: Stop calling deprecated version of "CreateIceCandidate". (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « no previous file | remoting/host/cast_extension_session.cc » ('j') | remoting/host/cast_extension_session.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 11fa9ab741197c2565c0a3de4f1aabbd2c9dc3ad..bd2917d35c490c5292647670a12e646f61116b6b 100644
--- a/content/renderer/media/webrtc/peer_connection_dependency_factory.cc
+++ b/content/renderer/media/webrtc/peer_connection_dependency_factory.cc
@@ -569,7 +569,7 @@ PeerConnectionDependencyFactory::CreateIceCandidate(
const std::string& sdp_mid,
int sdp_mline_index,
const std::string& sdp) {
- return webrtc::CreateIceCandidate(sdp_mid, sdp_mline_index, sdp);
+ return webrtc::CreateIceCandidate(sdp_mid, sdp_mline_index, sdp, NULL);
tommi (sloooow) - chröme 2015/07/02 11:24:31 nit: nullptr
joachim 2015/07/02 12:01:23 Done.
}
WebRtcAudioDeviceImpl*
« no previous file with comments | « no previous file | remoting/host/cast_extension_session.cc » ('j') | remoting/host/cast_extension_session.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698