summaryrefslogtreecommitdiffstats
path: root/remoting/test
diff options
context:
space:
mode:
authorsergeyu <sergeyu@chromium.org>2015-10-28 14:57:45 -0700
committerCommit bot <commit-bot@chromium.org>2015-10-28 21:58:43 +0000
commita77490672cf7691bedcc29e2adeeb8645cbc5f16 (patch)
tree408b176402682c38d0760027c6c2bfd8136b445b /remoting/test
parent6c36bcfc1d1c42ab7c0441405f646de0f4fa26db (diff)
downloadchromium_src-a77490672cf7691bedcc29e2adeeb8645cbc5f16.zip
chromium_src-a77490672cf7691bedcc29e2adeeb8645cbc5f16.tar.gz
chromium_src-a77490672cf7691bedcc29e2adeeb8645cbc5f16.tar.bz2
Remove remoting::protocol::Transport interface.
Moved and renamed LibjingleTransport in libjingle_transport_factory.cc to IceTransportChannel in ice_transport_channel.cc. Removed LibjingleTransportFactory class and moved all code to IceTransportFactory. BUG=547158 Review URL: https://codereview.chromium.org/1412313006 Cr-Commit-Position: refs/heads/master@{#356659}
Diffstat (limited to 'remoting/test')
-rw-r--r--remoting/test/test_chromoting_client_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/test/test_chromoting_client_unittest.cc b/remoting/test/test_chromoting_client_unittest.cc
index 9ae48e7..27e5c5d 100644
--- a/remoting/test/test_chromoting_client_unittest.cc
+++ b/remoting/test/test_chromoting_client_unittest.cc
@@ -91,8 +91,8 @@ void TestChromotingClientTest::TearDown() {
// The chromoting instance must be destroyed before the message loop.
test_chromoting_client_.reset();
- // The LibjingleTransportFactory destroys the PortAllocator via a DeleteSoon
- // operation. If we do not allow the message loop to run here, we run the
+ // The IceTransportFactory destroys the PortAllocator via a DeleteSoon
+ // operation. If we do not allow the message loop to run here, we run the
// risk of the DeleteSoon task being dropped and incurring a memory leak.
message_loop_.RunUntilIdle();
}