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

Unified Diff: remoting/client/plugin/pepper_port_allocator.cc

Issue 10882037: libjingle roll r175 (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 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: remoting/client/plugin/pepper_port_allocator.cc
===================================================================
--- remoting/client/plugin/pepper_port_allocator.cc (revision 153240)
+++ remoting/client/plugin/pepper_port_allocator.cc (working copy)
@@ -128,7 +128,8 @@
void PepperPortAllocatorSession::GetPortConfigurations() {
// Add an empty configuration synchronously, so a local connection
// can be started immediately.
- ConfigReady(new cricket::PortConfiguration(talk_base::SocketAddress()));
+ ConfigReady(new cricket::PortConfiguration(
+ talk_base::SocketAddress(), "", ""));
ResolveStunServerAddress();
TryCreateRelaySession();
@@ -191,7 +192,7 @@
ReceiveSessionResponse(std::string(relay_response_body_.begin(),
relay_response_body_.end()));
} else {
- ConfigReady(new cricket::PortConfiguration(stun_address_));
+ ConfigReady(new cricket::PortConfiguration(stun_address_, "", ""));
}
}

Powered by Google App Engine
This is Rietveld 408576698