| Index: webrtc/pc/channelmanager_unittest.cc
|
| diff --git a/webrtc/pc/channelmanager_unittest.cc b/webrtc/pc/channelmanager_unittest.cc
|
| index 8cb066b25df3eb61db5c6b3cf03745863017e7d1..eeeb7555fd1cabe65ee3cf48f9529a3aa8e8f42f 100644
|
| --- a/webrtc/pc/channelmanager_unittest.cc
|
| +++ b/webrtc/pc/channelmanager_unittest.cc
|
| @@ -113,7 +113,7 @@ TEST_F(ChannelManagerTest, CreateDestroyChannels) {
|
| // Test that we can create and destroy a voice and video channel with a worker.
|
| TEST_F(ChannelManagerTest, CreateDestroyChannelsOnThread) {
|
| worker_.Start();
|
| - EXPECT_TRUE(cm_->set_worker_thread(&worker_));
|
| + EXPECT_TRUE(cm_->set_network_thread(&worker_));
|
| EXPECT_TRUE(cm_->Init());
|
| delete transport_controller_;
|
| transport_controller_ =
|
| @@ -142,7 +142,7 @@ TEST_F(ChannelManagerTest, NoTransportChannelTest) {
|
| transport_controller_->set_fail_channel_creation(true);
|
| // The test is useless unless the session does not fail creating
|
| // cricket::TransportChannel.
|
| - ASSERT_TRUE(transport_controller_->CreateTransportChannel_w(
|
| + ASSERT_TRUE(transport_controller_->CreateTransportChannel_n(
|
| "audio", cricket::ICE_CANDIDATE_COMPONENT_RTP) == nullptr);
|
|
|
| cricket::VoiceChannel* voice_channel =
|
|
|