diff options
Diffstat (limited to 'jingle/glue/proxy_resolving_client_socket.h')
-rw-r--r-- | jingle/glue/proxy_resolving_client_socket.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/jingle/glue/proxy_resolving_client_socket.h b/jingle/glue/proxy_resolving_client_socket.h index 99f342c..eb1e4de 100644 --- a/jingle/glue/proxy_resolving_client_socket.h +++ b/jingle/glue/proxy_resolving_client_socket.h @@ -12,6 +12,7 @@ #include "base/compiler_specific.h" #include "base/memory/ref_counted.h" #include "base/memory/weak_ptr.h" +#include "googleurl/src/gurl.h" #include "net/base/completion_callback.h" #include "net/base/host_port_pair.h" #include "net/base/net_errors.h" @@ -92,7 +93,8 @@ class ProxyResolvingClientSocket : public net::StreamSocket { const net::SSLConfig ssl_config_; net::ProxyService::PacRequest* pac_request_; net::ProxyInfo proxy_info_; - net::HostPortPair dest_host_port_pair_; + const net::HostPortPair dest_host_port_pair_; + const GURL proxy_url_; bool tried_direct_connect_fallback_; net::BoundNetLog bound_net_log_; base::WeakPtrFactory<ProxyResolvingClientSocket> weak_factory_; |