Index: net/quic/reliable_quic_stream.h |
diff --git a/net/quic/reliable_quic_stream.h b/net/quic/reliable_quic_stream.h |
index 8e660b2e102066067c90a4571c59e333bb8ea1b0..946b5f560a66d9e48d94ef6f494bd940df26132f 100644 |
--- a/net/quic/reliable_quic_stream.h |
+++ b/net/quic/reliable_quic_stream.h |
@@ -118,9 +118,6 @@ class NET_EXPORT_PRIVATE ReliableQuicStream { |
void set_fin_received(bool fin_received) { fin_received_ = fin_received; } |
void set_rst_sent(bool rst_sent) { rst_sent_ = rst_sent; } |
- void set_fec_policy(FecPolicy fec_policy) { fec_policy_ = fec_policy; } |
- FecPolicy fec_policy() const { return fec_policy_; } |
- |
void set_rst_received(bool rst_received) { rst_received_ = rst_received; } |
void set_stream_error(QuicRstStreamErrorCode error) { stream_error_ = error; } |
@@ -198,9 +195,6 @@ class NET_EXPORT_PRIVATE ReliableQuicStream { |
// Does not send a FIN. May cause the stream to be closed. |
virtual void CloseWriteSide(); |
- // Helper method that returns FecProtection to use when writing. |
- FecProtection GetFecProtection(); |
- |
bool fin_buffered() const { return fin_buffered_; } |
const QuicSession* session() const { return session_; } |
@@ -287,9 +281,6 @@ class NET_EXPORT_PRIVATE ReliableQuicStream { |
// True if this stream has received a RST_STREAM frame. |
bool rst_received_; |
- // FEC policy to be used for this stream. |
- FecPolicy fec_policy_; |
- |
// Tracks if the session this stream is running under was created by a |
// server or a client. |
Perspective perspective_; |