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

Unified Diff: net/quic/quic_protocol.h

Issue 1979743002: Rename the QUIC stream frame fields frame_buffer and frame_length to data_buffer and data_length be… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@121700577
Patch Set: Created 4 years, 7 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_packet_generator.cc ('k') | net/quic/quic_protocol.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_protocol.h
diff --git a/net/quic/quic_protocol.h b/net/quic/quic_protocol.h
index 9fb3220ff6f7e267eadf387907c970d1612e9038..87b2326b22e727bbc37a51e239296dec48a3b402 100644
--- a/net/quic/quic_protocol.h
+++ b/net/quic/quic_protocol.h
@@ -846,7 +846,7 @@ struct NET_EXPORT_PRIVATE QuicStreamFrame {
QuicStreamFrame(QuicStreamId stream_id,
bool fin,
QuicStreamOffset offset,
- QuicPacketLength frame_length,
+ QuicPacketLength data_length,
UniqueStreamBuffer buffer);
~QuicStreamFrame();
@@ -855,8 +855,8 @@ struct NET_EXPORT_PRIVATE QuicStreamFrame {
QuicStreamId stream_id;
bool fin;
- QuicPacketLength frame_length;
- const char* frame_buffer;
+ QuicPacketLength data_length;
+ const char* data_buffer;
QuicStreamOffset offset; // Location of this data in the stream.
// nullptr when the QuicStreamFrame is received, and non-null when sent.
UniqueStreamBuffer buffer;
@@ -865,8 +865,8 @@ struct NET_EXPORT_PRIVATE QuicStreamFrame {
QuicStreamFrame(QuicStreamId stream_id,
bool fin,
QuicStreamOffset offset,
- const char* frame_buffer,
- QuicPacketLength frame_length,
+ const char* data_buffer,
+ QuicPacketLength data_length,
UniqueStreamBuffer buffer);
DISALLOW_COPY_AND_ASSIGN(QuicStreamFrame);
« no previous file with comments | « net/quic/quic_packet_generator.cc ('k') | net/quic/quic_protocol.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698