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

Unified Diff: net/quic/reliable_quic_stream.h

Issue 1784903003: Remove FEC from send path. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@114770052
Patch Set: Restore accidentally removed OnRttChanged call Created 4 years, 9 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_spdy_stream_test.cc ('k') | net/quic/reliable_quic_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « net/quic/quic_spdy_stream_test.cc ('k') | net/quic/reliable_quic_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698