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

Unified Diff: net/quic/quic_headers_stream.cc

Issue 1961573002: Avoids the "re-encode HPACK as SPDY3" step. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Avoids the "re-encode HPACK as SPDY3" step. Created 4 years, 7 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: net/quic/quic_headers_stream.cc
diff --git a/net/quic/quic_headers_stream.cc b/net/quic/quic_headers_stream.cc
index 0e2da5e00115dd891147f799f936b97b6961e3ee..7cc85983dfb31c60e140fe33660d1d7f0847e89f 100644
--- a/net/quic/quic_headers_stream.cc
+++ b/net/quic/quic_headers_stream.cc
@@ -10,7 +10,6 @@
#include "net/quic/quic_bug_tracker.h"
#include "net/quic/quic_flags.h"
#include "net/quic/quic_header_list.h"
-#include "net/quic/quic_headers_stream.h"
#include "net/quic/quic_spdy_session.h"
#include "net/quic/quic_time.h"
@@ -375,6 +374,8 @@ void QuicHeadersStream::OnControlFrameHeaderData(SpdyStreamId stream_id,
}
void QuicHeadersStream::OnHeaderList(const QuicHeaderList& header_list) {
+ DVLOG(1) << "Received header list for stream " << stream_id_ << ": "
+ << header_list.DebugString();
if (measure_headers_hol_blocking_time_) {
if (prev_max_timestamp_ > cur_max_timestamp_) {
// prev_max_timestamp_ > cur_max_timestamp_ implies that

Powered by Google App Engine
This is Rietveld 408576698