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

Unified Diff: net/quic/core/quic_end_to_end_unittest.cc

Issue 2227503003: Add net log to UploadDataStream. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: typo Created 4 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/chromium/quic_http_stream_test.cc ('k') | net/spdy/spdy_http_stream_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_end_to_end_unittest.cc
diff --git a/net/quic/core/quic_end_to_end_unittest.cc b/net/quic/core/quic_end_to_end_unittest.cc
index 79e1c26b9ea34bf70addf59ea1eb4ea367f035fe..809f61bda03d7bce48458e7c3dcffac1c6253b6e 100644
--- a/net/quic/core/quic_end_to_end_unittest.cc
+++ b/net/quic/core/quic_end_to_end_unittest.cc
@@ -238,8 +238,9 @@ class QuicEndToEndTest : public ::testing::TestWithParam<TestParams> {
request_.method = "POST";
request_.url = GURL("https://test.example.com/");
request_.upload_data_stream = upload_data_stream_.get();
- ASSERT_THAT(request_.upload_data_stream->Init(CompletionCallback()),
- IsOk());
+ ASSERT_THAT(
+ request_.upload_data_stream->Init(CompletionCallback(), BoundNetLog()),
+ IsOk());
}
// Checks that |consumer| completed and received |status_line| and |body|.
« no previous file with comments | « net/quic/chromium/quic_http_stream_test.cc ('k') | net/spdy/spdy_http_stream_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698