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

Unified Diff: content/renderer/p2p/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
« no previous file with comments | « DEPS ('k') | remoting/client/plugin/pepper_port_allocator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/p2p/port_allocator.cc
===================================================================
--- content/renderer/p2p/port_allocator.cc (revision 153387)
+++ content/renderer/p2p/port_allocator.cc (working copy)
@@ -141,7 +141,8 @@
void P2PPortAllocatorSession::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(),
+ "", ""));
if (stun_server_address_.IsNil()) {
ResolveStunServerAddress();
@@ -290,7 +291,7 @@
void P2PPortAllocatorSession::AddConfig() {
cricket::PortConfiguration* config =
- new cricket::PortConfiguration(stun_server_address_);
+ new cricket::PortConfiguration(stun_server_address_, "", "");
if (relay_ip_.ip() != 0) {
cricket::PortConfiguration::PortList ports;
« no previous file with comments | « DEPS ('k') | remoting/client/plugin/pepper_port_allocator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698