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

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

Issue 12207107: Update libjingle 273:277. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 10 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/peer_connection_tracker.cc
===================================================================
--- content/renderer/media/peer_connection_tracker.cc (revision 181693)
+++ content/renderer/media/peer_connection_tracker.cc (working copy)
@@ -23,7 +23,7 @@
namespace content {
static string SerializeServers(
- const std::vector<webrtc::JsepInterface::IceServer>& servers) {
+ const std::vector<webrtc::PeerConnectionInterface::IceServer>& servers) {
string result = "[";
for (size_t i = 0; i < servers.size(); ++i) {
result += servers[i].uri;
@@ -241,7 +241,7 @@
void PeerConnectionTracker::RegisterPeerConnection(
RTCPeerConnectionHandler* pc_handler,
- const std::vector<webrtc::JsepInterface::IceServer>& servers,
+ const std::vector<webrtc::PeerConnectionInterface::IceServer>& servers,
const RTCMediaConstraints& constraints,
const WebKit::WebFrame* frame) {
DVLOG(1) << "PeerConnectionTracker::RegisterPeerConnection()";
@@ -310,7 +310,7 @@
void PeerConnectionTracker::TrackUpdateIce(
RTCPeerConnectionHandler* pc_handler,
- const std::vector<webrtc::JsepInterface::IceServer>& servers,
+ const std::vector<webrtc::PeerConnectionInterface::IceServer>& servers,
const RTCMediaConstraints& options) {
string servers_string = "servers: " + SerializeServers(servers);
string constraints =
« no previous file with comments | « content/renderer/media/peer_connection_tracker.h ('k') | content/renderer/media/rtc_peer_connection_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698