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

Unified Diff: content/renderer/media/mock_peer_connection_impl.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/mock_peer_connection_impl.cc
===================================================================
--- content/renderer/media/mock_peer_connection_impl.cc (revision 148953)
+++ content/renderer/media/mock_peer_connection_impl.cc (working copy)
@@ -164,7 +164,8 @@
bool MockPeerConnectionImpl::ProcessIceMessage(
const webrtc::IceCandidateInterface* ice_candidate) {
- ice_label_ = ice_candidate->label();
+ sdp_mid_ = ice_candidate->sdp_mid();
+ sdp_mline_index_ = ice_candidate->sdp_mline_index();
return ice_candidate->ToString(&ice_sdp_);
}

Powered by Google App Engine
This is Rietveld 408576698