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

Unified Diff: remoting/host/cast_extension_session.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
Index: remoting/host/cast_extension_session.cc
diff --git a/remoting/host/cast_extension_session.cc b/remoting/host/cast_extension_session.cc
index d43beff9a49e244e39b2277aca2f015f9e07ed20..bcd89e0a89378beccb31314e2725d1cb33c81d3a 100644
--- a/remoting/host/cast_extension_session.cc
+++ b/remoting/host/cast_extension_session.cc
@@ -389,7 +389,7 @@ bool CastExtensionSession::ParseAndAddICECandidate(
}
rtc::scoped_ptr<webrtc::IceCandidateInterface> candidate(
- webrtc::CreateIceCandidate(sdp_mid, sdp_mlineindex, candidate_str));
+ webrtc::CreateIceCandidate(sdp_mid, sdp_mlineindex, candidate_str, NULL));
tommi (sloooow) - chröme 2015/07/02 11:24:31 same here
joachim 2015/07/02 12:01:23 Done.
if (!candidate.get()) {
LOG(ERROR)
<< "Invalid Cast Extension Message (could not create candidate).";

Powered by Google App Engine
This is Rietveld 408576698