| Index: net/spdy/spdy_session_pool.cc
|
| diff --git a/net/spdy/spdy_session_pool.cc b/net/spdy/spdy_session_pool.cc
|
| index a22b57a859f6140a65484b8abbeb5cd3e09be198..710f9a6fc0efe3c9fbabc79e6b0ddbb477ebb155 100644
|
| --- a/net/spdy/spdy_session_pool.cc
|
| +++ b/net/spdy/spdy_session_pool.cc
|
| @@ -78,7 +78,7 @@ SpdySessionPool::~SpdySessionPool() {
|
| base::WeakPtr<SpdySession> SpdySessionPool::CreateAvailableSessionFromSocket(
|
| const SpdySessionKey& key,
|
| std::unique_ptr<ClientSocketHandle> connection,
|
| - const BoundNetLog& net_log,
|
| + const NetLogWithSource& net_log,
|
| int certificate_error_code,
|
| bool is_secure) {
|
| TRACE_EVENT0("net", "SpdySessionPool::CreateAvailableSessionFromSocket");
|
| @@ -121,7 +121,7 @@ base::WeakPtr<SpdySession> SpdySessionPool::CreateAvailableSessionFromSocket(
|
| base::WeakPtr<SpdySession> SpdySessionPool::FindAvailableSession(
|
| const SpdySessionKey& key,
|
| const GURL& url,
|
| - const BoundNetLog& net_log) {
|
| + const NetLogWithSource& net_log) {
|
| UnclaimedPushedStreamMap::iterator url_it =
|
| unclaimed_pushed_streams_.find(url);
|
| if (!url.is_empty() && url_it != unclaimed_pushed_streams_.end()) {
|
|
|