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

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

Issue 435823002: Revert "Update webrtc&libjingle 6774:6799." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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 | « jingle/notifier/communicator/connection_settings.cc ('k') | jingle/notifier/communicator/login.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jingle/notifier/communicator/connection_settings_unittest.cc
diff --git a/jingle/notifier/communicator/connection_settings_unittest.cc b/jingle/notifier/communicator/connection_settings_unittest.cc
index 38606e128d4dc7806b8d2973fbe471592cee133e..c7e0c4c93bf15c581f0dfda0d904928a5ef5ca65 100644
--- a/jingle/notifier/communicator/connection_settings_unittest.cc
+++ b/jingle/notifier/communicator/connection_settings_unittest.cc
@@ -44,17 +44,17 @@ TEST_F(ConnectionSettingsTest, Basic) {
ConnectionSettingsList expected_settings_list;
expected_settings_list.push_back(
ConnectionSettings(
- rtc::SocketAddress("supports_ssltcp.com", 100),
+ talk_base::SocketAddress("supports_ssltcp.com", 100),
DO_NOT_USE_SSLTCP,
SUPPORTS_SSLTCP));
expected_settings_list.push_back(
ConnectionSettings(
- rtc::SocketAddress("supports_ssltcp.com", 443),
+ talk_base::SocketAddress("supports_ssltcp.com", 443),
USE_SSLTCP,
SUPPORTS_SSLTCP));
expected_settings_list.push_back(
ConnectionSettings(
- rtc::SocketAddress("does_not_support_ssltcp.com", 200),
+ talk_base::SocketAddress("does_not_support_ssltcp.com", 200),
DO_NOT_USE_SSLTCP,
DOES_NOT_SUPPORT_SSLTCP));
@@ -74,17 +74,17 @@ TEST_F(ConnectionSettingsTest, TrySslTcpFirst) {
ConnectionSettingsList expected_settings_list;
expected_settings_list.push_back(
ConnectionSettings(
- rtc::SocketAddress("supports_ssltcp.com", 443),
+ talk_base::SocketAddress("supports_ssltcp.com", 443),
USE_SSLTCP,
SUPPORTS_SSLTCP));
expected_settings_list.push_back(
ConnectionSettings(
- rtc::SocketAddress("supports_ssltcp.com", 100),
+ talk_base::SocketAddress("supports_ssltcp.com", 100),
DO_NOT_USE_SSLTCP,
SUPPORTS_SSLTCP));
expected_settings_list.push_back(
ConnectionSettings(
- rtc::SocketAddress("does_not_support_ssltcp.com", 200),
+ talk_base::SocketAddress("does_not_support_ssltcp.com", 200),
DO_NOT_USE_SSLTCP,
DOES_NOT_SUPPORT_SSLTCP));
« no previous file with comments | « jingle/notifier/communicator/connection_settings.cc ('k') | jingle/notifier/communicator/login.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698