diff options
Diffstat (limited to 'net/http')
-rw-r--r-- | net/http/http_stream_factory_impl_job.cc | 2 | ||||
-rw-r--r-- | net/http/http_stream_factory_impl_job.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/http/http_stream_factory_impl_job.cc b/net/http/http_stream_factory_impl_job.cc index c1b08e0..b88b622 100644 --- a/net/http/http_stream_factory_impl_job.cc +++ b/net/http/http_stream_factory_impl_job.cc @@ -351,7 +351,7 @@ void HttpStreamFactoryImpl::Job::OnPreconnectsComplete() { // static int HttpStreamFactoryImpl::Job::OnHostResolution( SpdySessionPool* spdy_session_pool, - const HostPortProxyPair spdy_session_key, + const HostPortProxyPair& spdy_session_key, const AddressList& addresses, const BoundNetLog& net_log) { // It is OK to dereference spdy_session_pool, because the diff --git a/net/http/http_stream_factory_impl_job.h b/net/http/http_stream_factory_impl_job.h index 7b6bd07..e247458 100644 --- a/net/http/http_stream_factory_impl_job.h +++ b/net/http/http_stream_factory_impl_job.h @@ -210,7 +210,7 @@ class HttpStreamFactoryImpl::Job { // be found. Will return ERR_SPDY_SESSION_ALREADY_EXISTS if such a // session is found, and OK otherwise. static int OnHostResolution(SpdySessionPool* spdy_session_pool, - const HostPortProxyPair spdy_session_key, + const HostPortProxyPair& spdy_session_key, const AddressList& addresses, const BoundNetLog& net_log); |