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

Unified Diff: net/spdy/chromium/spdy_http_stream.cc

Issue 2334943002: Add a new QuicChromiumClientSession::Handle class (Closed)
Patch Set: fixes Created 3 years, 7 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/spdy/chromium/multiplexed_session.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/chromium/spdy_http_stream.cc
diff --git a/net/spdy/chromium/spdy_http_stream.cc b/net/spdy/chromium/spdy_http_stream.cc
index bb01b854149337d27fb26abc65c7aaa4ce320000..c579ffb9b93f66fa493b4b07c3ff98e742a7166b 100644
--- a/net/spdy/chromium/spdy_http_stream.cc
+++ b/net/spdy/chromium/spdy_http_stream.cc
@@ -36,7 +36,8 @@ const size_t SpdyHttpStream::kRequestBodyBufferSize = 1 << 14; // 16KB
SpdyHttpStream::SpdyHttpStream(const base::WeakPtr<SpdySession>& spdy_session,
bool direct,
NetLogSource source_dependency)
- : MultiplexedHttpStream(MultiplexedSessionHandle(spdy_session)),
+ : MultiplexedHttpStream(
+ base::MakeUnique<MultiplexedSessionHandle>(spdy_session)),
spdy_session_(spdy_session),
is_reused_(spdy_session_->IsReused()),
source_dependency_(source_dependency),
« no previous file with comments | « net/spdy/chromium/multiplexed_session.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698