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

Unified Diff: net/spdy/buffered_spdy_framer.cc

Issue 2300683002: Increase maximum size of the HPACK decoder dynamic table to 64 kB. (Closed)
Patch Set: Update Cronet Android tests. Created 4 years, 3 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/spdy/buffered_spdy_framer.cc
diff --git a/net/spdy/buffered_spdy_framer.cc b/net/spdy/buffered_spdy_framer.cc
index 7a06d41e3eae26edcefeddbc01920445f9757f3d..9148fe430665ddfa53282552d24c33a15137611e 100644
--- a/net/spdy/buffered_spdy_framer.cc
+++ b/net/spdy/buffered_spdy_framer.cc
@@ -300,6 +300,10 @@ size_t BufferedSpdyFramer::ProcessInput(const char* data, size_t len) {
return spdy_framer_.ProcessInput(data, len);
}
+void BufferedSpdyFramer::UpdateHeaderDecoderTableSize(uint32_t value) {
+ spdy_framer_.UpdateHeaderDecoderTableSize(value);
+}
+
void BufferedSpdyFramer::Reset() {
spdy_framer_.Reset();
}

Powered by Google App Engine
This is Rietveld 408576698