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

Unified Diff: net/quic/quic_framer.h

Issue 862133002: Update from https://crrev.com/312398 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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
Index: net/quic/quic_framer.h
diff --git a/net/quic/quic_framer.h b/net/quic/quic_framer.h
index 4cc51f11ed6f8f0ad9ee12d8e4632999195602c3..0504d3d8854677df586df6e201e37e5751d6c12a 100644
--- a/net/quic/quic_framer.h
+++ b/net/quic/quic_framer.h
@@ -121,10 +121,6 @@ class NET_EXPORT_PRIVATE QuicFramerVisitorInterface {
// the framer will stop parsing the current packet.
virtual bool OnAckFrame(const QuicAckFrame& frame) = 0;
- // Called when a CongestionFeedbackFrame has been parsed.
- virtual bool OnCongestionFeedbackFrame(
- const QuicCongestionFeedbackFrame& frame) = 0;
-
// Called when a StopWaitingFrame has been parsed.
virtual bool OnStopWaitingFrame(const QuicStopWaitingFrame& frame) = 0;
@@ -414,8 +410,6 @@ class NET_EXPORT_PRIVATE QuicFramer {
bool ProcessTimestampsInAckFrame(QuicAckFrame* frame);
bool ProcessStopWaitingFrame(const QuicPacketHeader& public_header,
QuicStopWaitingFrame* stop_waiting);
- bool ProcessCongestionFeedbackFrame(
- QuicCongestionFeedbackFrame* congestion_feedback);
bool ProcessRstStreamFrame(QuicRstStreamFrame* frame);
bool ProcessConnectionCloseFrame(QuicConnectionCloseFrame* frame);
bool ProcessGoAwayFrame(QuicGoAwayFrame* frame);
@@ -468,8 +462,6 @@ class NET_EXPORT_PRIVATE QuicFramer {
bool AppendAckFrameAndTypeByte(const QuicPacketHeader& header,
const QuicAckFrame& frame,
QuicDataWriter* builder);
- bool AppendCongestionFeedbackFrame(const QuicCongestionFeedbackFrame& frame,
- QuicDataWriter* builder);
bool AppendTimestampToAckFrame(const QuicAckFrame& frame,
QuicDataWriter* builder);
bool AppendStopWaitingFrame(const QuicPacketHeader& header,
« no previous file with comments | « net/quic/quic_flags.cc ('k') | net/quic/quic_framer.cc » ('j') | shell/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698