Index: net/spdy/spdy_session_pool.cc |
diff --git a/net/spdy/spdy_session_pool.cc b/net/spdy/spdy_session_pool.cc |
index 10bd52ff566a2c9506efbbe8a8ea674f21b114b8..f544aff6ec3cf3774a1bb4e833781cf08c6ac3d3 100644 |
--- a/net/spdy/spdy_session_pool.cc |
+++ b/net/spdy/spdy_session_pool.cc |
@@ -32,7 +32,6 @@ SpdySessionPool::SpdySessionPool( |
SSLConfigService* ssl_config_service, |
const base::WeakPtr<HttpServerProperties>& http_server_properties, |
bool force_single_domain, |
- bool enable_ip_pooling, |
bool enable_compression, |
bool enable_ping_based_connection_checking, |
NextProto default_protocol, |
@@ -47,7 +46,6 @@ SpdySessionPool::SpdySessionPool( |
verify_domain_authentication_(true), |
enable_sending_initial_data_(true), |
force_single_domain_(force_single_domain), |
- enable_ip_pooling_(enable_ip_pooling), |
enable_compression_(enable_compression), |
enable_ping_based_connection_checking_( |
enable_ping_based_connection_checking), |
@@ -129,7 +127,7 @@ net::Error SpdySessionPool::CreateAvailableSessionFromSocket( |
// potentially be pooled with this one. Because GetPeerAddress() |
// reports the proxy's address instead of the origin server, check |
// to see if this is a direct connection. |
- if (enable_ip_pooling_ && key.proxy_server().is_direct()) { |
+ if (key.proxy_server().is_direct()) { |
IPEndPoint address; |
if ((*available_session)->GetPeerAddress(&address) == OK) |
aliases_[address] = key; |