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

Unified Diff: net/tools/flip_server/spdy_interface.cc

Issue 11415219: Move a number of static variables SPDY to HttpNetworkSession::Params. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix flip_in_mem_edsm_server Created 8 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/spdy/spdy_websocket_test_util_spdy3.cc ('k') | net/websockets/websocket_job_spdy2_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/flip_server/spdy_interface.cc
diff --git a/net/tools/flip_server/spdy_interface.cc b/net/tools/flip_server/spdy_interface.cc
index de9ffb1f9b5de134c99f9e6b5e3275bf7473ae5d..d6ea40aa6c730314ea39ae8e60d77fcaaf81179a 100644
--- a/net/tools/flip_server/spdy_interface.cc
+++ b/net/tools/flip_server/spdy_interface.cc
@@ -39,7 +39,7 @@ SpdySM::SpdySM(SMConnection* connection,
EpollServer* epoll_server,
MemoryCache* memory_cache,
FlipAcceptor* acceptor)
- : buffered_spdy_framer_(new BufferedSpdyFramer(2)),
+ : buffered_spdy_framer_(new BufferedSpdyFramer(2, true)),
valid_spdy_session_(false),
connection_(connection),
client_output_list_(connection->output_list()),
@@ -291,7 +291,7 @@ void SpdySM::ResetForNewInterface(int32 server_idx) {
void SpdySM::ResetForNewConnection() {
// seq_num is not cleared, intentionally.
delete buffered_spdy_framer_;
- buffered_spdy_framer_ = new BufferedSpdyFramer(2);
+ buffered_spdy_framer_ = new BufferedSpdyFramer(2, true);
buffered_spdy_framer_->set_visitor(this);
valid_spdy_session_ = false;
client_output_ordering_.Reset();
« no previous file with comments | « net/spdy/spdy_websocket_test_util_spdy3.cc ('k') | net/websockets/websocket_job_spdy2_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698