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

Unified Diff: trunk/src/net/quic/quic_session.h

Issue 15018013: Revert 198736 "Land Recent QUIC changes" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 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
« no previous file with comments | « trunk/src/net/quic/quic_protocol.h ('k') | trunk/src/net/quic/quic_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/net/quic/quic_session.h
===================================================================
--- trunk/src/net/quic/quic_session.h (revision 198763)
+++ trunk/src/net/quic/quic_session.h (working copy)
@@ -17,8 +17,6 @@
#include "net/quic/quic_crypto_stream.h"
#include "net/quic/quic_packet_creator.h"
#include "net/quic/quic_protocol.h"
-#include "net/quic/quic_spdy_compressor.h"
-#include "net/quic/quic_spdy_decompressor.h"
#include "net/quic/reliable_quic_stream.h"
namespace net {
@@ -122,11 +120,6 @@
void MarkWriteBlocked(QuicStreamId id);
- // Marks that |stream_id| is blocked waiting to decompress the
- // headers identified by |decompression_id|.
- void MarkDecompressionBlocked(QuicHeaderId decompression_id,
- QuicStreamId stream_id);
-
bool goaway_received() const {
return goaway_received_;
}
@@ -135,9 +128,6 @@
return goaway_sent_;
}
- QuicSpdyDecompressor* decompressor() { return &decompressor_; }
- QuicSpdyCompressor* compressor() { return &compressor_; }
-
protected:
// Creates a new stream, owned by the caller, to handle a peer-initiated
// stream. Returns NULL and does error handling if the stream can not be
@@ -192,9 +182,6 @@
std::vector<ReliableQuicStream*> closed_streams_;
- QuicSpdyDecompressor decompressor_;
- QuicSpdyCompressor compressor_;
-
// Returns the maximum number of streams this connection can open.
const size_t max_open_streams_;
@@ -210,10 +197,6 @@
// A list of streams which need to write more data.
BlockedList<QuicStreamId> write_blocked_streams_;
- // A map of headers waiting to be compressed, and the streams
- // they are associated with.
- map<uint32, QuicStreamId> decompression_blocked_streams_;
-
QuicStreamId largest_peer_created_stream_id_;
// Whether a GoAway has been received.
« no previous file with comments | « trunk/src/net/quic/quic_protocol.h ('k') | trunk/src/net/quic/quic_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698