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

Unified Diff: webrtc/api/quicdatachannel_unittest.cc

Issue 2089553002: Refactoring on QUIC (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Disable quic for review. Created 4 years, 6 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
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;
}

Powered by Google App Engine
This is Rietveld 408576698