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

Unified Diff: net/quic/core/quic_spdy_stream.cc

Issue 2607873002: QUIC - refactor in preparation for two streams per HTTP transaction. (Closed)
Patch Set: Fixed namespaces and formatting. Created 4 years 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
« no previous file with comments | « net/quic/core/quic_spdy_session.cc ('k') | net/quic/core/quic_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_spdy_stream.cc
diff --git a/net/quic/core/quic_spdy_stream.cc b/net/quic/core/quic_spdy_stream.cc
index b55ca878e0a03f96695ccd70309d59d6078ca87e..c64f21b48e037677513afe181db25552a8b55728 100644
--- a/net/quic/core/quic_spdy_stream.cc
+++ b/net/quic/core/quic_spdy_stream.cc
@@ -334,8 +334,8 @@ QuicConsumedData QuicSpdyStream::WritevDataInner(
QuicReferenceCountedPointer<QuicAckListenerInterface> ack_listener) {
if (spdy_session_->headers_stream() != nullptr &&
spdy_session_->force_hol_blocking()) {
- return spdy_session_->headers_stream()->WritevStreamData(
- id(), iov, offset, fin, std::move(ack_listener));
+ return spdy_session_->WritevStreamData(id(), iov, offset, fin,
+ std::move(ack_listener));
}
return QuicStream::WritevDataInner(iov, offset, fin, std::move(ack_listener));
}
« no previous file with comments | « net/quic/core/quic_spdy_session.cc ('k') | net/quic/core/quic_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698