summaryrefslogtreecommitdiff
path: root/chromium/net/third_party/quiche/src/quic/tools/quic_simple_client_stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/third_party/quiche/src/quic/tools/quic_simple_client_stream.h')
-rw-r--r--chromium/net/third_party/quiche/src/quic/tools/quic_simple_client_stream.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/chromium/net/third_party/quiche/src/quic/tools/quic_simple_client_stream.h b/chromium/net/third_party/quiche/src/quic/tools/quic_simple_client_stream.h
index f1eb653bea4..aa6d2f6fe44 100644
--- a/chromium/net/third_party/quiche/src/quic/tools/quic_simple_client_stream.h
+++ b/chromium/net/third_party/quiche/src/quic/tools/quic_simple_client_stream.h
@@ -16,17 +16,11 @@ class QuicSimpleClientStream : public QuicSpdyClientStream {
StreamType type,
bool drop_response_body)
: QuicSpdyClientStream(id, session, type),
- drop_response_body_(drop_response_body),
- last_stop_sending_code_(0) {}
+ drop_response_body_(drop_response_body) {}
void OnBodyAvailable() override;
- void OnStopSending(uint16_t code) override;
- uint16_t last_stop_sending_code() { return last_stop_sending_code_; }
private:
const bool drop_response_body_;
- // Application code value that was in the most recently received
- // STOP_SENDING frame for this stream.
- uint16_t last_stop_sending_code_;
};
} // namespace quic