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

Unified Diff: net/quic/quic_data_stream_test.cc

Issue 612323013: QUIC - (no behavior change) s/NULL/nullptr/g in .../quic/... (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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_data_stream.cc ('k') | net/quic/quic_data_writer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_data_stream_test.cc
diff --git a/net/quic/quic_data_stream_test.cc b/net/quic/quic_data_stream_test.cc
index 00758594ea2a9ba6d77fa42986bee704796f826e..279dcd3a7f511a4a38f72f566e350a101ce911f1 100644
--- a/net/quic/quic_data_stream_test.cc
+++ b/net/quic/quic_data_stream_test.cc
@@ -299,7 +299,7 @@ TEST_P(QuicDataStreamTest, StreamFlowControlBlocked) {
EXPECT_CALL(*connection_, SendBlocked(kClientDataStreamId1));
EXPECT_CALL(*session_, WritevData(kClientDataStreamId1, _, _, _, _, _))
.WillOnce(Return(QuicConsumedData(kWindow, true)));
- stream_->WriteOrBufferData(body, false, NULL);
+ stream_->WriteOrBufferData(body, false, nullptr);
// Should have sent as much as possible, resulting in no send window left.
EXPECT_EQ(0u,
@@ -535,7 +535,7 @@ TEST_P(QuicDataStreamTest, StreamFlowControlFinNotBlocked) {
EXPECT_CALL(*session_, WritevData(kClientDataStreamId1, _, _, _, _, _))
.WillOnce(Return(QuicConsumedData(0, fin)));
- stream_->WriteOrBufferData(body, fin, NULL);
+ stream_->WriteOrBufferData(body, fin, nullptr);
}
} // namespace
« no previous file with comments | « net/quic/quic_data_stream.cc ('k') | net/quic/quic_data_writer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698