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

Unified Diff: net/spdy/spdy_network_transaction_unittest.cc

Issue 2621983004: Improve HttpStreamFactory NetLog events (Closed)
Patch Set: Address Bence comments and change back to auto Created 3 years, 11 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_network_transaction_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_network_transaction_unittest.cc
diff --git a/net/spdy/spdy_network_transaction_unittest.cc b/net/spdy/spdy_network_transaction_unittest.cc
index 8e14b22ba7ed224f05aa2c89b961e5c6f86042fa..9acaf3d9490668d207cd98fa72db604169ff316d 100644
--- a/net/spdy/spdy_network_transaction_unittest.cc
+++ b/net/spdy/spdy_network_transaction_unittest.cc
@@ -110,9 +110,11 @@ class SpdyNetworkTransactionTest : public ::testing::Test {
session_deps_(session_deps.get() == nullptr
? base::MakeUnique<SpdySessionDependencies>()
: std::move(session_deps)),
- session_(
- SpdySessionDependencies::SpdyCreateSession(session_deps_.get())),
- log_(log) {}
+ log_(log) {
+ session_deps_->net_log = log.net_log();
+ session_ =
+ SpdySessionDependencies::SpdyCreateSession(session_deps_.get());
+ }
~NormalSpdyTransactionHelper() {
// Any test which doesn't close the socket by sending it an EOF will
« no previous file with comments | « net/quic/chromium/quic_network_transaction_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698