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

Unified Diff: remoting/test/protocol_perftest.cc

Issue 2798393007: Use SignalingAddress in SignalStrategy insterface. (Closed)
Patch Set: header Created 3 years, 8 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 | « remoting/signaling/xmpp_signal_strategy.cc ('k') | remoting/test/test_chromoting_client_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/test/protocol_perftest.cc
diff --git a/remoting/test/protocol_perftest.cc b/remoting/test/protocol_perftest.cc
index 2645690fd834ee58e001d8906bc62422d9925cdb..202b4e30e038c33e065922f837b1fa6bab806eb9 100644
--- a/remoting/test/protocol_perftest.cc
+++ b/remoting/test/protocol_perftest.cc
@@ -242,7 +242,8 @@ class ProtocolPerfTest
void StartHostAndClient(bool use_webrtc) {
fake_network_dispatcher_ = new FakeNetworkDispatcher();
- client_signaling_.reset(new FakeSignalStrategy(kClientJid));
+ client_signaling_.reset(
+ new FakeSignalStrategy(SignalingAddress(kClientJid)));
jingle_glue::JingleThreadWrapper::EnsureForCurrentMessageLoop();
@@ -261,7 +262,7 @@ class ProtocolPerfTest
jingle_glue::JingleThreadWrapper::EnsureForCurrentMessageLoop();
- host_signaling_.reset(new FakeSignalStrategy(kHostJid));
+ host_signaling_.reset(new FakeSignalStrategy(SignalingAddress(kHostJid)));
host_signaling_->set_send_delay(GetParam().signaling_latency);
host_signaling_->ConnectTo(client_signaling_.get());
« no previous file with comments | « remoting/signaling/xmpp_signal_strategy.cc ('k') | remoting/test/test_chromoting_client_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698