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

Unified Diff: net/quic/quic_framer.h

Issue 22311013: Removing QUIC's VERSION_6, now that QUIC no longer needs to support the (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Sync with trunk Created 7 years, 4 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_connection_test.cc ('k') | net/quic/quic_framer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_framer.h
===================================================================
--- net/quic/quic_framer.h (revision 217052)
+++ net/quic/quic_framer.h (working copy)
@@ -35,9 +35,6 @@
// Maximum number of bytes reserved for stream id.
const size_t kQuicMaxStreamIdSize = 4;
-// Number of bytes reserved for fin flag in stream frame.
-// TODO(ianswett): Remove once QUIC_VERSION_6 and before are removed.
-const size_t kQuicStreamFinSize = 1;
// Maximum number of bytes reserved for byte offset in stream frame.
const size_t kQuicMaxStreamOffsetSize = 8;
// Number of bytes reserved to store payload length in stream frame.
@@ -365,7 +362,6 @@
QuicPacketSequenceNumber* sequence_number);
bool ProcessFrameData();
bool ProcessStreamFrame(uint8 frame_type, QuicStreamFrame* frame);
- bool ProcessV6StreamFrame(QuicStreamFrame* frame);
bool ProcessAckFrame(QuicAckFrame* frame);
bool ProcessReceivedInfo(ReceivedPacketInfo* received_info);
bool ProcessSentInfo(SentPacketInfo* sent_info);
@@ -398,8 +394,6 @@
bool AppendStreamFramePayload(const QuicStreamFrame& frame,
bool last_frame_in_packet,
QuicDataWriter* builder);
- bool AppendV6StreamFramePayload(const QuicStreamFrame& frame,
- QuicDataWriter* builder);
bool AppendAckFramePayload(const QuicAckFrame& frame,
QuicDataWriter* builder);
bool AppendQuicCongestionFeedbackFramePayload(
« no previous file with comments | « net/quic/quic_connection_test.cc ('k') | net/quic/quic_framer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698