Index: webrtc/api/quicdatachannel_unittest.cc |
diff --git a/webrtc/api/quicdatachannel_unittest.cc b/webrtc/api/quicdatachannel_unittest.cc |
index e701c29b4f31146a9436ac56096027e7b4eb0cba..fec68013ab63cf72c2db1281d9e53e93fb2a345b 100644 |
--- a/webrtc/api/quicdatachannel_unittest.cc |
+++ b/webrtc/api/quicdatachannel_unittest.cc |
@@ -120,8 +120,9 @@ class FakeQuicDataTransport : public sigslot::has_slots<> { |
DataChannelInit config; |
config.id = id; |
config.protocol = protocol; |
- rtc::scoped_refptr<QuicDataChannel> data_channel(new QuicDataChannel( |
- rtc::Thread::Current(), rtc::Thread::Current(), label, config)); |
+ rtc::scoped_refptr<QuicDataChannel> data_channel( |
+ new QuicDataChannel(rtc::Thread::Current(), rtc::Thread::Current(), |
+ rtc::Thread::Current(), label, config)); |
data_channel_by_id_[id] = data_channel; |
return data_channel; |
} |