From 90499486eb26f12da3456f01bd28abc4a6191ea4 Mon Sep 17 00:00:00 2001 From: "rsleevi@chromium.org" Date: Sat, 1 Jun 2013 00:39:50 +0000 Subject: Update net/ to use scoped_refptr::get() rather than implicit "operator T*" Linux fixes BUG=110610 TBR=darin Review URL: https://chromiumcodereview.appspot.com/15829004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203535 0039d316-1c4b-4281-b951-d872f2087c98 --- net/http/http_stream_factory_impl.cc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'net/http/http_stream_factory_impl.cc') diff --git a/net/http/http_stream_factory_impl.cc b/net/http/http_stream_factory_impl.cc index d86c690..47110df 100644 --- a/net/http/http_stream_factory_impl.cc +++ b/net/http/http_stream_factory_impl.cc @@ -240,8 +240,11 @@ void HttpStreamFactoryImpl::OnSpdySessionReady( using_spdy, net_log); bool use_relative_url = direct || request->url().SchemeIs("https"); - request->OnStreamReady(NULL, used_ssl_config, used_proxy_info, - new SpdyHttpStream(spdy_session, use_relative_url)); + request->OnStreamReady( + NULL, + used_ssl_config, + used_proxy_info, + new SpdyHttpStream(spdy_session.get(), use_relative_url)); } // TODO(mbelshe): Alert other valid requests. } -- cgit v1.1