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

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

Issue 429253003: Webrtc deps roll. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
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
===================================================================
--- jingle/notifier/communicator/connection_settings_unittest.cc (revision 286889)
+++ jingle/notifier/communicator/connection_settings_unittest.cc (working copy)
@@ -44,17 +44,17 @@
ConnectionSettingsList expected_settings_list;
expected_settings_list.push_back(
ConnectionSettings(
- talk_base::SocketAddress("supports_ssltcp.com", 100),
+ rtc::SocketAddress("supports_ssltcp.com", 100),
DO_NOT_USE_SSLTCP,
SUPPORTS_SSLTCP));
expected_settings_list.push_back(
ConnectionSettings(
- talk_base::SocketAddress("supports_ssltcp.com", 443),
+ rtc::SocketAddress("supports_ssltcp.com", 443),
USE_SSLTCP,
SUPPORTS_SSLTCP));
expected_settings_list.push_back(
ConnectionSettings(
- talk_base::SocketAddress("does_not_support_ssltcp.com", 200),
+ rtc::SocketAddress("does_not_support_ssltcp.com", 200),
DO_NOT_USE_SSLTCP,
DOES_NOT_SUPPORT_SSLTCP));
@@ -74,17 +74,17 @@
ConnectionSettingsList expected_settings_list;
expected_settings_list.push_back(
ConnectionSettings(
- talk_base::SocketAddress("supports_ssltcp.com", 443),
+ rtc::SocketAddress("supports_ssltcp.com", 443),
USE_SSLTCP,
SUPPORTS_SSLTCP));
expected_settings_list.push_back(
ConnectionSettings(
- talk_base::SocketAddress("supports_ssltcp.com", 100),
+ rtc::SocketAddress("supports_ssltcp.com", 100),
DO_NOT_USE_SSLTCP,
SUPPORTS_SSLTCP));
expected_settings_list.push_back(
ConnectionSettings(
- talk_base::SocketAddress("does_not_support_ssltcp.com", 200),
+ rtc::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