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

Unified Diff: net/spdy/spdy_framer.cc

Issue 1568423002: Implement better HPACK Huffman code decoder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Do not use binary literals. Created 4 years, 11 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
« no previous file with comments | « net/spdy/hpack/hpack_round_trip_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_framer.cc
diff --git a/net/spdy/spdy_framer.cc b/net/spdy/spdy_framer.cc
index 2a2fb4d24723e82877a9d3eb8f3cd4ea337905f8..6568b281d2cae9d7eb8482aaf4fe0fca2f17ef85 100644
--- a/net/spdy/spdy_framer.cc
+++ b/net/spdy/spdy_framer.cc
@@ -2961,7 +2961,7 @@ HpackEncoder* SpdyFramer::GetHpackEncoder() {
HpackDecoder* SpdyFramer::GetHpackDecoder() {
DCHECK_LT(SPDY3, protocol_version());
if (hpack_decoder_.get() == nullptr) {
- hpack_decoder_.reset(new HpackDecoder(ObtainHpackHuffmanTable()));
+ hpack_decoder_.reset(new HpackDecoder());
}
return hpack_decoder_.get();
}
« no previous file with comments | « net/spdy/hpack/hpack_round_trip_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698