diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-15 00:28:32 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-15 00:28:32 +0000 |
commit | bd33ed7ac21b7c7fbee5b716092092434f62a469 (patch) | |
tree | 1af624ab76b385dc77ae16aa0607ab3f96fe660b /net/spdy/spdy_session_pool.cc | |
parent | 47b3b473b847a92005065094524a33bbdb8d134f (diff) | |
download | chromium_src-bd33ed7ac21b7c7fbee5b716092092434f62a469.zip chromium_src-bd33ed7ac21b7c7fbee5b716092092434f62a469.tar.gz chromium_src-bd33ed7ac21b7c7fbee5b716092092434f62a469.tar.bz2 |
Revert 47342 - Support SpdySession as a new NetLog source type. Start logging some more SPDY control frames.
BUG=43237
Review URL: http://codereview.chromium.org/2102003
TBR=willchan@chromium.org
Review URL: http://codereview.chromium.org/2118003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47343 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy/spdy_session_pool.cc')
-rw-r--r-- | net/spdy/spdy_session_pool.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/spdy/spdy_session_pool.cc b/net/spdy/spdy_session_pool.cc index cd505a8..af397c7 100644 --- a/net/spdy/spdy_session_pool.cc +++ b/net/spdy/spdy_session_pool.cc @@ -35,7 +35,7 @@ scoped_refptr<SpdySession> SpdySessionPool::Get( DCHECK(list); if (!spdy_session) - spdy_session = new SpdySession(host_port_pair, session, net_log.net_log()); + spdy_session = new SpdySession(host_port_pair, session, net_log); DCHECK(spdy_session); list->push_back(spdy_session); @@ -53,7 +53,7 @@ scoped_refptr<SpdySession> SpdySessionPool::GetSpdySessionFromSSLSocket( list = AddSessionList(host_port_pair); DCHECK(list->empty()); scoped_refptr<SpdySession> spdy_session( - new SpdySession(host_port_pair, session, net_log.net_log())); + new SpdySession(host_port_pair, session, net_log)); spdy_session->InitializeWithSSLSocket(connection); list->push_back(spdy_session); return spdy_session; |