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

Unified Diff: net/spdy/chromium/buffered_spdy_framer.cc

Issue 2974613002: Allow large response headers to buffer in HpackDecoder. (Closed)
Patch Set: naught but a nit Created 3 years, 5 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/chromium/buffered_spdy_framer.h ('k') | net/spdy/chromium/header_coalescer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/chromium/buffered_spdy_framer.cc
diff --git a/net/spdy/chromium/buffered_spdy_framer.cc b/net/spdy/chromium/buffered_spdy_framer.cc
index a6004c06223b8ba011be1eb8039de746b2281e98..8acb6986ffbd3e68af144a1fbd337b0e6bac80c6 100644
--- a/net/spdy/chromium/buffered_spdy_framer.cc
+++ b/net/spdy/chromium/buffered_spdy_framer.cc
@@ -216,6 +216,11 @@ void BufferedSpdyFramer::UpdateHeaderDecoderTableSize(uint32_t value) {
spdy_framer_.UpdateHeaderDecoderTableSize(value);
}
+void BufferedSpdyFramer::set_max_decode_buffer_size_bytes(
+ size_t max_decode_buffer_size_bytes) {
+ spdy_framer_.set_max_decode_buffer_size_bytes(max_decode_buffer_size_bytes);
+}
+
void BufferedSpdyFramer::Reset() {
spdy_framer_.Reset();
}
« no previous file with comments | « net/spdy/chromium/buffered_spdy_framer.h ('k') | net/spdy/chromium/header_coalescer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698