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

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

Issue 2511633002: Rename "updateICE" to "setConfiguration", everywhere except in Blink. (Closed)
Patch Set: Making sure updateIce doesn't change behavior in this CL. Created 4 years, 1 month 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/peer_connection_tracker.cc
diff --git a/content/renderer/media/peer_connection_tracker.cc b/content/renderer/media/peer_connection_tracker.cc
index 3e2dc702483711cdcbe025876c565dd167689214..6ee93dc26c3465f05239c16041ec9768293c4115 100644
--- a/content/renderer/media/peer_connection_tracker.cc
+++ b/content/renderer/media/peer_connection_tracker.cc
@@ -524,7 +524,7 @@ void PeerConnectionTracker::TrackSetSessionDescription(
value);
}
-void PeerConnectionTracker::TrackUpdateIce(
+void PeerConnectionTracker::TrackSetConfiguration(
RTCPeerConnectionHandler* pc_handler,
const webrtc::PeerConnectionInterface::RTCConfiguration& config) {
DCHECK(main_thread_.CalledOnValidThread());
@@ -539,10 +539,7 @@ void PeerConnectionTracker::TrackUpdateIce(
<< "rtcpMuxPolicy: " << SerializeRtcpMuxPolicy(config.rtcp_mux_policy)
<< "}";
- SendPeerConnectionUpdate(
- id,
- "updateIce",
- result.str());
+ SendPeerConnectionUpdate(id, "setConfiguration", result.str());
}
void PeerConnectionTracker::TrackAddIceCandidate(

Powered by Google App Engine
This is Rietveld 408576698