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

Unified Diff: net/quic/quic_stream_sequencer_test.cc

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_stream_sequencer.cc ('k') | net/quic/reliable_quic_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_stream_sequencer_test.cc
diff --git a/net/quic/quic_stream_sequencer_test.cc b/net/quic/quic_stream_sequencer_test.cc
index 4a68474da3236b2a048cee8480cc52100aef0a95..9a5a928b1a6acd172e9e5fa66a5801081a24b245 100644
--- a/net/quic/quic_stream_sequencer_test.cc
+++ b/net/quic/quic_stream_sequencer_test.cc
@@ -130,8 +130,8 @@ class QuicStreamSequencerTest : public ::testing::Test {
QuicStreamFrame frame;
frame.stream_id = 1;
frame.offset = byte_offset;
- frame.frame_buffer = data;
- frame.frame_length = strlen(data);
+ frame.data_buffer = data;
+ frame.data_length = strlen(data);
frame.fin = true;
sequencer_->OnStreamFrame(frame);
}
@@ -140,8 +140,8 @@ class QuicStreamSequencerTest : public ::testing::Test {
QuicStreamFrame frame;
frame.stream_id = 1;
frame.offset = byte_offset;
- frame.frame_buffer = data;
- frame.frame_length = strlen(data);
+ frame.data_buffer = data;
+ frame.data_length = strlen(data);
frame.fin = false;
sequencer_->OnStreamFrame(frame);
}
« no previous file with comments | « net/quic/quic_stream_sequencer.cc ('k') | net/quic/reliable_quic_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698