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

Unified Diff: net/quic/core/quic_framer.h

Issue 2747443002: Landing recent QUIC changes until Sun Mar 5 09:18:09 2017 +0000 (Closed)
Patch Set: Created 3 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
Index: net/quic/core/quic_framer.h
diff --git a/net/quic/core/quic_framer.h b/net/quic/core/quic_framer.h
index 16d43400ed7fa6c28136860f0cd527f29bd04029..2ca8ea15e1792053df00598bf99c13a84b43bc8f 100644
--- a/net/quic/core/quic_framer.h
+++ b/net/quic/core/quic_framer.h
@@ -134,9 +134,6 @@ class QUIC_EXPORT_PRIVATE QuicFramerVisitorInterface {
// Called when a BlockedFrame has been parsed.
virtual bool OnBlockedFrame(const QuicBlockedFrame& frame) = 0;
- // Called when a PathCloseFrame has been parsed.
- virtual bool OnPathCloseFrame(const QuicPathCloseFrame& frame) = 0;
-
// Called when a packet has been completely processed.
virtual void OnPacketComplete() = 0;
};
@@ -211,8 +208,6 @@ class QUIC_EXPORT_PRIVATE QuicFramer {
static size_t GetWindowUpdateFrameSize();
// Size in bytes of all Blocked frame fields.
static size_t GetBlockedFrameSize();
- // Size in bytes of all PathClose frame fields.
- static size_t GetPathCloseFrameSize();
// Size in bytes required to serialize the stream id.
static size_t GetStreamIdSize(QuicStreamId stream_id);
// Size in bytes required to serialize the stream offset.
@@ -391,7 +386,6 @@ class QUIC_EXPORT_PRIVATE QuicFramer {
bool ProcessWindowUpdateFrame(QuicDataReader* reader,
QuicWindowUpdateFrame* frame);
bool ProcessBlockedFrame(QuicDataReader* reader, QuicBlockedFrame* frame);
- bool ProcessPathCloseFrame(QuicDataReader* reader, QuicPathCloseFrame* frame);
bool DecryptPayload(QuicDataReader* encrypted_reader,
const QuicPacketHeader& header,
@@ -466,8 +460,6 @@ class QUIC_EXPORT_PRIVATE QuicFramer {
QuicDataWriter* writer);
bool AppendBlockedFrame(const QuicBlockedFrame& frame,
QuicDataWriter* writer);
- bool AppendPathCloseFrame(const QuicPathCloseFrame& frame,
- QuicDataWriter* writer);
bool RaiseError(QuicErrorCode error);

Powered by Google App Engine
This is Rietveld 408576698