summaryrefslogtreecommitdiff
path: root/chromium/net/http/http_proxy_client_socket_wrapper.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/http/http_proxy_client_socket_wrapper.cc')
-rw-r--r--chromium/net/http/http_proxy_client_socket_wrapper.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/chromium/net/http/http_proxy_client_socket_wrapper.cc b/chromium/net/http/http_proxy_client_socket_wrapper.cc
index 2ce84c90213..d67438d1b38 100644
--- a/chromium/net/http/http_proxy_client_socket_wrapper.cc
+++ b/chromium/net/http/http_proxy_client_socket_wrapper.cc
@@ -11,7 +11,6 @@
#include "base/callback_helpers.h"
#include "base/memory/weak_ptr.h"
#include "base/metrics/histogram_macros.h"
-#include "base/profiler/scoped_tracker.h"
#include "base/values.h"
#include "net/base/proxy_delegate.h"
#include "net/http/http_proxy_client_socket.h"
@@ -432,8 +431,7 @@ int HttpProxyClientSocketWrapper::DoSSLConnect() {
SpdySessionKey key(GetDestination().host_port_pair(), ProxyServer::Direct(),
PRIVACY_MODE_DISABLED);
if (spdy_session_pool_->FindAvailableSession(
- key, GURL(),
- /* enable_ip_based_pooling = */ true, net_log_)) {
+ key, /* enable_ip_based_pooling = */ true, net_log_)) {
using_spdy_ = true;
next_state_ = STATE_SPDY_PROXY_CREATE_STREAM;
return OK;
@@ -546,8 +544,7 @@ int HttpProxyClientSocketWrapper::DoSpdyProxyCreateStream() {
PRIVACY_MODE_DISABLED);
base::WeakPtr<SpdySession> spdy_session =
spdy_session_pool_->FindAvailableSession(
- key, GURL(),
- /* enable_ip_based_pooling = */ true, net_log_);
+ key, /* enable_ip_based_pooling = */ true, net_log_);
// It's possible that a session to the proxy has recently been created
if (spdy_session) {
if (transport_socket_handle_.get()) {