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

Unified Diff: jingle/notifier/communicator/connection_settings.cc

Issue 450463002: Update webrtc&libjingle 6774:6825. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 6 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: jingle/notifier/communicator/connection_settings.cc
===================================================================
--- jingle/notifier/communicator/connection_settings.cc (revision 287594)
+++ jingle/notifier/communicator/connection_settings.cc (working copy)
@@ -18,7 +18,7 @@
const uint16 kSslTcpPort = 443;
ConnectionSettings::ConnectionSettings(
- const talk_base::SocketAddress& server,
+ const rtc::SocketAddress& server,
SslTcpMode ssltcp_mode,
SslTcpSupport ssltcp_support)
: server(server),
@@ -76,12 +76,12 @@
for (ServerList::const_iterator it = servers.begin();
it != servers.end(); ++it) {
const ConnectionSettings settings(
- talk_base::SocketAddress(it->server.host(), it->server.port()),
+ rtc::SocketAddress(it->server.host(), it->server.port()),
DO_NOT_USE_SSLTCP, it->ssltcp_support);
if (it->ssltcp_support == SUPPORTS_SSLTCP) {
const ConnectionSettings settings_with_ssltcp(
- talk_base::SocketAddress(it->server.host(), kSslTcpPort),
+ rtc::SocketAddress(it->server.host(), kSslTcpPort),
USE_SSLTCP, it->ssltcp_support);
if (try_ssltcp_first) {
« no previous file with comments | « jingle/notifier/communicator/connection_settings.h ('k') | jingle/notifier/communicator/connection_settings_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698