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

Unified Diff: webrtc/p2p/base/port.cc

Issue 1277263002: Add instrumentation to track the IceEndpointType. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 5 years, 4 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: webrtc/p2p/base/port.cc
diff --git a/webrtc/p2p/base/port.cc b/webrtc/p2p/base/port.cc
index 4023b322e732ef31e6827bd3fc95715351fc2f22..02908cec24d129bd0eb22cf0be379a3fefd29a32 100644
--- a/webrtc/p2p/base/port.cc
+++ b/webrtc/p2p/base/port.cc
@@ -249,6 +249,7 @@ void Port::AddAddress(const rtc::SocketAddress& address,
const rtc::SocketAddress& base_address,
const rtc::SocketAddress& related_address,
const std::string& protocol,
+ const std::string& relay_protocol,
const std::string& tcptype,
const std::string& type,
uint32 type_preference,
@@ -263,6 +264,7 @@ void Port::AddAddress(const rtc::SocketAddress& address,
c.set_component(component_);
c.set_type(type);
c.set_protocol(protocol);
+ c.set_relay_protocol(relay_protocol);
c.set_tcptype(tcptype);
c.set_address(address);
c.set_priority(c.GetPriority(type_preference, network_->preference(),

Powered by Google App Engine
This is Rietveld 408576698