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

Unified Diff: net/tools/quic/quic_dispatcher.cc

Issue 1782143003: Remove FEC code from receive path. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@115997404
Patch Set: 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/tools/quic/quic_dispatcher.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_dispatcher.cc
diff --git a/net/tools/quic/quic_dispatcher.cc b/net/tools/quic/quic_dispatcher.cc
index 9cb1059aa211dd85948ccf44d88aa4ae42be8a12..6fad609b27a2dc148f13487f67b030e0ec24dd0e 100644
--- a/net/tools/quic/quic_dispatcher.cc
+++ b/net/tools/quic/quic_dispatcher.cc
@@ -387,14 +387,6 @@ bool QuicDispatcher::OnPacketHeader(const QuicPacketHeader& /*header*/) {
return false;
}
-void QuicDispatcher::OnRevivedPacket() {
- DCHECK(false);
-}
-
-void QuicDispatcher::OnFecProtectedPayload(StringPiece /*payload*/) {
- DCHECK(false);
-}
-
bool QuicDispatcher::OnStreamFrame(const QuicStreamFrame& /*frame*/) {
DCHECK(false);
return false;
@@ -447,10 +439,6 @@ bool QuicDispatcher::OnPathCloseFrame(const QuicPathCloseFrame& frame) {
return false;
}
-void QuicDispatcher::OnFecData(StringPiece /*redundancy*/) {
- DCHECK(false);
-}
-
void QuicDispatcher::OnPacketComplete() {
DCHECK(false);
}
« no previous file with comments | « net/tools/quic/quic_dispatcher.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698