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

Unified Diff: webrtc/p2p/quic/quictransportchannel.cc

Issue 1888903002: Fix QuicSession to unbuffer data when the QuicTransportChannel reconnects (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 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
Index: webrtc/p2p/quic/quictransportchannel.cc
diff --git a/webrtc/p2p/quic/quictransportchannel.cc b/webrtc/p2p/quic/quictransportchannel.cc
index 446fd4201cc8de964513b4435d7b0b4605c46f7a..15bc1b04b4e43a706dbd26a03fb199a5ab190c30 100644
--- a/webrtc/p2p/quic/quictransportchannel.cc
+++ b/webrtc/p2p/quic/quictransportchannel.cc
@@ -574,7 +574,7 @@ void QuicTransportChannel::set_quic_state(QuicTransportState state) {
ReliableQuicStream* QuicTransportChannel::CreateQuicStream() {
if (quic_) {
- net::SpdyPriority priority = 0; // Priority of the QUIC stream (not used)
+ net::SpdyPriority priority = 0; // Priority of the QUIC stream
return quic_->CreateOutgoingDynamicStream(priority);
}
return nullptr;

Powered by Google App Engine
This is Rietveld 408576698