diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-08 22:25:46 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-08 22:25:46 +0000 |
commit | 64ade3bced12c45802c82cfa065e90d6c5b5d575 (patch) | |
tree | 50255ad49a8e7ef9f375a7061c3829878975f99a /jingle/glue/proxy_resolving_client_socket.h | |
parent | dc2cad71ffdcf2799cf4bc450882c6d8c4d61efd (diff) | |
download | chromium_src-64ade3bced12c45802c82cfa065e90d6c5b5d575.zip chromium_src-64ade3bced12c45802c82cfa065e90d6c5b5d575.tar.gz chromium_src-64ade3bced12c45802c82cfa065e90d6c5b5d575.tar.bz2 |
Use 'https://' prefix for proxy resolution in ProxyResolvingClientSocket
This is because we use TLS on the socket for all current use cases.
BUG=159579
Review URL: https://chromiumcodereview.appspot.com/11364152
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166780 0039d316-1c4b-4281-b951-d872f2087c98
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_; |