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

Unified Diff: content/renderer/media/media_stream_dependency_factory.cc

Issue 10833061: Rolling libjingle revison r163. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 5 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/media_stream_dependency_factory.cc
===================================================================
--- content/renderer/media/media_stream_dependency_factory.cc (revision 148953)
+++ content/renderer/media/media_stream_dependency_factory.cc (working copy)
@@ -145,7 +145,8 @@
}
webrtc::IceCandidateInterface* MediaStreamDependencyFactory::CreateIceCandidate(
- const std::string& label,
+ const std::string& media_id,
+ int m_line_index,
const std::string& sdp) {
- return webrtc::CreateIceCandidate(label, sdp);
+ return webrtc::CreateIceCandidate(media_id, m_line_index, sdp);
}

Powered by Google App Engine
This is Rietveld 408576698