diff options
author | mallinath@chromium.org <mallinath@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-26 12:17:31 +0000 |
---|---|---|
committer | mallinath@chromium.org <mallinath@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-26 12:17:31 +0000 |
commit | cb1ae8c01b01b889ddefd01c16210944b2030450 (patch) | |
tree | 51fc9e3d58888217efd6a705c01271eef058d17b /content/renderer/p2p | |
parent | f66774e21aef2f8fc66fdb422cfd869cb67517b3 (diff) | |
download | chromium_src-cb1ae8c01b01b889ddefd01c16210944b2030450.zip chromium_src-cb1ae8c01b01b889ddefd01c16210944b2030450.tar.gz chromium_src-cb1ae8c01b01b889ddefd01c16210944b2030450.tar.bz2 |
Updating chrome to libjingle r175
Review URL: https://chromiumcodereview.appspot.com/10882037
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153413 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/p2p')
-rw-r--r-- | content/renderer/p2p/port_allocator.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/content/renderer/p2p/port_allocator.cc b/content/renderer/p2p/port_allocator.cc index f81fe27..f1f68c0 100644 --- a/content/renderer/p2p/port_allocator.cc +++ b/content/renderer/p2p/port_allocator.cc @@ -141,7 +141,8 @@ void P2PPortAllocatorSession::didFail(WebKit::WebURLLoader* loader, 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::ParseRelayResponse() { 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; |