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

Unified Diff: net/quic/chromium/quic_chromium_client_stream_test.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_chromium_client_stream_test.cc
diff --git a/net/quic/chromium/quic_chromium_client_stream_test.cc b/net/quic/chromium/quic_chromium_client_stream_test.cc
index a240f24994a96ae1dc5fd652df4e7860a34e4744..b985c31447e57640c3782e9e779740f26bcdb0ed 100644
--- a/net/quic/chromium/quic_chromium_client_stream_test.cc
+++ b/net/quic/chromium/quic_chromium_client_stream_test.cc
@@ -172,8 +172,8 @@ class QuicChromiumClientStreamTest
Perspective::IS_CLIENT,
SupportedVersions(GetParam())),
&push_promise_index_) {
- stream_ =
- new QuicChromiumClientStream(kTestStreamId, &session_, BoundNetLog());
+ stream_ = new QuicChromiumClientStream(kTestStreamId, &session_,
+ NetLogWithSource());
session_.ActivateStream(stream_);
stream_->SetDelegate(&delegate_);
}
@@ -538,7 +538,7 @@ TEST_P(QuicChromiumClientStreamTest, HeadersBeforeDelegate) {
// We don't use stream_ because we want an incoming server push
// stream.
QuicChromiumClientStream* stream = new QuicChromiumClientStream(
- kServerDataStreamId1, &session_, BoundNetLog());
+ kServerDataStreamId1, &session_, NetLogWithSource());
session_.ActivateStream(stream);
InitializeHeaders();

Powered by Google App Engine
This is Rietveld 408576698