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

Unified Diff: net/quic/quic_spdy_stream.h

Issue 1754813002: Revert of QUIC - instrumentation for testing null QuicSpdyStream. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase TOT Created 4 years, 10 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/quic/quic_http_stream.cc ('k') | net/quic/quic_spdy_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_spdy_stream.h
diff --git a/net/quic/quic_spdy_stream.h b/net/quic/quic_spdy_stream.h
index ba1adfdd79ea7ca85323abca68b8fcf251a2b885..e7f640e0c88d1f469c9a988c3d3cb049fb301096 100644
--- a/net/quic/quic_spdy_stream.h
+++ b/net/quic/quic_spdy_stream.h
@@ -147,10 +147,6 @@ class NET_EXPORT_PRIVATE QuicSpdyStream : public ReliableQuicStream {
// written to the server.
void SetPriority(SpdyPriority priority);
- // TODO(rtenneti): Temporary until crbug.com/585591 is solved.
- void CrashIfInvalid() const;
- void set_read_in_progress(bool value) { read_in_progress_ = value; }
-
protected:
// Called by OnStreamHeadersComplete depending on which type (initial or
// trailing) headers are expected next.
@@ -167,12 +163,6 @@ class NET_EXPORT_PRIVATE QuicSpdyStream : public ReliableQuicStream {
friend class test::ReliableQuicStreamPeer;
friend class QuicStreamUtils;
- // TODO(rtenneti): Temporary until crbug.com/585591 is solved.
- enum Liveness {
- ALIVE = 0xCA11AB13,
- DEAD = 0xDEADBEEF,
- };
-
// Returns true if trailers have been fully read and consumed.
bool FinishedReadingTrailers() const;
@@ -193,10 +183,6 @@ class NET_EXPORT_PRIVATE QuicSpdyStream : public ReliableQuicStream {
// via ProcessData or Readv.
std::string decompressed_trailers_;
- // TODO(rtenneti): Temporary until crbug.com/585591 is solved.
- Liveness liveness_ = ALIVE;
- bool read_in_progress_ = false;
-
DISALLOW_COPY_AND_ASSIGN(QuicSpdyStream);
};
« no previous file with comments | « net/quic/quic_http_stream.cc ('k') | net/quic/quic_spdy_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698