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

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

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: one more fix, content bound_net_log_ Created 4 years, 3 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
Index: net/quic/chromium/quic_end_to_end_unittest.cc
diff --git a/net/quic/chromium/quic_end_to_end_unittest.cc b/net/quic/chromium/quic_end_to_end_unittest.cc
index ebd3646b720fb8c9dc4e1b488bcc160dadf0e0f9..145ebbe409f6c347bdaedf8239ab6c4f22448db4 100644
--- a/net/quic/chromium/quic_end_to_end_unittest.cc
+++ b/net/quic/chromium/quic_end_to_end_unittest.cc
@@ -219,9 +219,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(), BoundNetLog()),
- IsOk());
+ ASSERT_THAT(request_.upload_data_stream->Init(CompletionCallback(),
+ NetLogWithSource()),
+ IsOk());
}
// Checks that |consumer| completed and received |status_line| and |body|.
@@ -270,7 +270,7 @@ TEST_P(QuicEndToEndTest, LargeGetWithNoPacketLoss) {
TestTransactionConsumer consumer(DEFAULT_PRIORITY,
transaction_factory_.get());
- consumer.Start(&request_, BoundNetLog());
+ consumer.Start(&request_, NetLogWithSource());
// Will terminate when the last consumer completes.
base::RunLoop().Run();
@@ -287,7 +287,7 @@ TEST_P(QuicEndToEndTest, TokenBinding) {
TestTransactionConsumer consumer(DEFAULT_PRIORITY,
transaction_factory_.get());
- consumer.Start(&request_, BoundNetLog());
+ consumer.Start(&request_, NetLogWithSource());
// Will terminate when the last consumer completes.
base::RunLoop().Run();
@@ -310,7 +310,7 @@ TEST_P(QuicEndToEndTest, LargePostWithNoPacketLoss) {
TestTransactionConsumer consumer(DEFAULT_PRIORITY,
transaction_factory_.get());
- consumer.Start(&request_, BoundNetLog());
+ consumer.Start(&request_, NetLogWithSource());
// Will terminate when the last consumer completes.
base::RunLoop().Run();
@@ -332,7 +332,7 @@ TEST_P(QuicEndToEndTest, LargePostWithPacketLoss) {
TestTransactionConsumer consumer(DEFAULT_PRIORITY,
transaction_factory_.get());
- consumer.Start(&request_, BoundNetLog());
+ consumer.Start(&request_, NetLogWithSource());
// Will terminate when the last consumer completes.
base::RunLoop().Run();
@@ -357,7 +357,7 @@ TEST_P(QuicEndToEndTest, UberTest) {
TestTransactionConsumer* consumer = new TestTransactionConsumer(
DEFAULT_PRIORITY, transaction_factory_.get());
consumers.push_back(consumer);
- consumer->Start(&request_, BoundNetLog());
+ consumer->Start(&request_, NetLogWithSource());
}
// Will terminate when the last consumer completes.

Powered by Google App Engine
This is Rietveld 408576698